You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
724 B
24 lines
724 B
{% load static %} |
|
<!DOCTYPE html> |
|
<html lang="ru"> |
|
<head> |
|
<meta charset="utf-8"> |
|
<title>{% block title%}Мой сайт{% endblock %}</title> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|
<meta name="description" content="HTML5 Example Page"> |
|
<link rel="stylesheet" href="{% static 'css/bulma.css' %}"> |
|
<link rel="stylesheet" href="{% static 'css/main.css' %}"> |
|
</head> |
|
<body> |
|
{% block content %}{% endblock %} |
|
|
|
<!-- <script src="/assets/js/scripts.js"></script> --> |
|
|
|
<!-- footer goes here --> |
|
<footer class="footer"> |
|
<div class="content has-text-centered"> |
|
Powered by me with emacs when i ate the frog first. |
|
</footer> |
|
</body> |
|
</html>
|
|
|