strojnadzor/mysite/templates/base.html
Andrey Golovizin ee3f27f7c2 Tweak the style
2020-01-19 16:54:43 +01:00

49 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% load cms_tags menu_tags sekizai_tags %}
<!doctype html>
<html>
<head>
<title>{% block title %}This is my new project home page{% endblock title %}</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="/static/style.css" rel="stylesheet">
<style type="text/css">
#page-nav {
padding-left: 0;
margin: 2rem 0;
}
#page-nav li {
display: inline;
list-style-type: none;
padding-right: 20px;
}
.container {
max-width: 940px;
margin: 3rem auto
}
.content {
float: left;
width: 80%;
}
.sidebar {
float: left;
width: 20%;
}
</style>
{% render_block "css" %}
</head>
<body>
{% cms_toolbar %}
<div class="container">
<h1>Инженер-строитель В.&#8239Н.&#8239Головизин</h1>
<nav id="page-nav">
<label for="hamburger">&#9776;</label>
<input type="checkbox" id="hamburger"/>
<ul class="nav">
{% show_menu 0 100 100 100 %}
</ul>
</nav>
{% block content %}{% endblock content %}
</div>
{% render_block "js" %}
</body>
</html>