##// END OF EJS Templates
Make header and footer divs actually <header> and <footer>
neko259 -
r1676:137d25dc default
parent child Browse files
Show More
@@ -124,14 +124,14 b' body {'
124 124 max-width: 30em;
125 125 }
126 126
127 .header {
127 header.navigation_panel {
128 128 border-bottom: solid 2px #ccc;
129 129 margin-bottom: 5px;
130 130 border-top: none;
131 131 margin-top: 0;
132 132 }
133 133
134 .footer {
134 footer.navigation_panel {
135 135 border-top: solid 2px #ccc;
136 136 margin-top: 5px;
137 137 border-bottom: none;
@@ -28,7 +28,7 b''
28 28 data-update-script="{% static 'js/updates.js' %}">
29 29 <script src="{% static 'js/jquery-2.2.0.min.js' %}"></script>
30 30
31 <div class="navigation_panel header">
31 <header class="navigation_panel">
32 32 <a class="link" href="{% url 'index' %}">{% trans "All threads" %}</a>
33 33 {% if tags_str %}
34 34 <a href="{% url 'index' %}?filter=fav_tags" title="{% trans "interesting" %}"></a>,
@@ -58,7 +58,7 b''
58 58 {% endif %}
59 59
60 60 <a class="right-link link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
61 </div>
61 </header>
62 62
63 63 <div id="fav-panel"><div class="post">{% trans "Loading..." %}</div></div>
64 64
@@ -75,7 +75,7 b''
75 75 <script src="{% static 'js/refpopup.js' %}"></script>
76 76 <script src="{% static 'js/main.js' %}"></script>
77 77
78 <div class="navigation_panel footer">
78 <footer class="navigation_panel">
79 79 {% block metapanel %}{% endblock %}
80 80 {% if rss_url %}
81 81 [<a href="{{ rss_url }}">RSS</a>]
@@ -86,7 +86,7 b''
86 86 {% blocktrans %}Speed: {{ ppd }} posts per day{% endblocktrans %}
87 87 {% endwith %}
88 88 <a class="link" href="#top" id="up">{% trans 'Up' %}</a>
89 </div>
89 </footer>
90 90
91 91 </body>
92 92 </html>
General Comments 0
You need to be logged in to leave comments. Login now