##// END OF EJS Templates
Added favicon.
neko259 -
r108:c99b6c88 default
parent child Browse files
Show More
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
@@ -1,49 +1,52 b''
1 {% load staticfiles %}
1 {% load staticfiles %}
2 {% load i18n %}
2 {% load i18n %}
3
3
4 <!DOCTYPE html>
4 <!DOCTYPE html>
5 <html>
5 <html>
6 <head>
6 <head>
7 <link rel="stylesheet" type="text/css"
7 <link rel="stylesheet" type="text/css"
8 href="{{ STATIC_URL }}css/jquery.fancybox.css" media="all"/>
8 href="{{ STATIC_URL }}css/jquery.fancybox.css" media="all"/>
9 <link rel="stylesheet" type="text/css"
9 <link rel="stylesheet" type="text/css"
10 href="{{ STATIC_URL }}css/{{ theme }}/base_page.css" media="all"/>
10 href="{{ STATIC_URL }}css/{{ theme }}/base_page.css" media="all"/>
11 <link rel="alternate" type="application/rss+xml" href="rss/" title="
11 <link rel="alternate" type="application/rss+xml" href="rss/" title="
12 {% trans 'Feed' %}"/>
12 {% trans 'Feed' %}"/>
13
13
14 <link rel="icon" type="image/png"
15 href="{{ STATIC_URL }}favicon.png">
16
14 <meta name="viewport" content="width=device-width, initial-scale=1"/>
17 <meta name="viewport" content="width=device-width, initial-scale=1"/>
15 <meta charset="utf-8"/>
18 <meta charset="utf-8"/>
16 {% block head %}{% endblock %}
19 {% block head %}{% endblock %}
17 </head>
20 </head>
18 <body>
21 <body>
19 <script src="{{ STATIC_URL }}js/jquery-2.0.1.min.js"></script>
22 <script src="{{ STATIC_URL }}js/jquery-2.0.1.min.js"></script>
20 <script src="{{ STATIC_URL }}js/jquery.fancybox.pack.js"></script>
23 <script src="{{ STATIC_URL }}js/jquery.fancybox.pack.js"></script>
21 <script src="{{ STATIC_URL }}js/main.js"></script>
24 <script src="{{ STATIC_URL }}js/main.js"></script>
22 <div id="admin_panel">
25 <div id="admin_panel">
23
26
24 {% if request.session.admin == True %}
27 {% if request.session.admin == True %}
25 Admin panel TODO: Need to implement <BR />
28 Admin panel TODO: Need to implement <BR />
26 {% endif %}
29 {% endif %}
27
30
28 </div>
31 </div>
29
32
30 <div class="navigation_panel">
33 <div class="navigation_panel">
31 <a class="link" href="{% url 'index' %}">{% trans "All threads" %}</a>
34 <a class="link" href="{% url 'index' %}">{% trans "All threads" %}</a>
32 {% for tag in tags %}
35 {% for tag in tags %}
33 <a class="tag" href=" {% url 'tag' tag_name=tag.name %}">
36 <a class="tag" href=" {% url 'tag' tag_name=tag.name %}">
34 {{ tag.name }}</a>({{ tag.get_post_count }})
37 {{ tag.name }}</a>({{ tag.get_post_count }})
35 {% endfor %}
38 {% endfor %}
36 <a class="tag" href="{% url 'tags' %}">[...]</a>
39 <a class="tag" href="{% url 'tags' %}">[...]</a>
37 <a class="link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
40 <a class="link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
38 </div>
41 </div>
39
42
40 {% block content %}{% endblock %}
43 {% block content %}{% endblock %}
41
44
42 <div class="navigation_panel">
45 <div class="navigation_panel">
43 {% block metapanel %}{% endblock %}
46 {% block metapanel %}{% endblock %}
44 [<a href="rss/">RSS</a>]
47 [<a href="rss/">RSS</a>]
45 <a class="link" href="#top">{% trans 'Up' %}</a>
48 <a class="link" href="#top">{% trans 'Up' %}</a>
46 </div>
49 </div>
47
50
48 </body>
51 </body>
49 </html> No newline at end of file
52 </html>
General Comments 0
You need to be logged in to leave comments. Login now