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