Simple update.
[turniej.git] / apps / poetry / templates / poetry / contest.html
1 {% extends "edition1/base.html" %}
2
3 {% block "body" %}
4
5 <h1>
6 <a href='{% url "e1_main_page" %}'><img src="{{ STATIC_URL }}img/turniej-maly.png" style='float:left; margin-right: 10px; margin-top: -13px' /></a>
7 Turniej Elektrybałtów: utwory wybrane do konkursu</h1>
8
9 <div class="social">
10 <span style="position:relative; top: -5px;" >
11     <div class="fb-like" data-href="http://turniej.wolnelektury.pl" data-send="false" data-layout="button_count" data-width="150" data-show-faces="false"></div>
12 </span>
13 <g:plusone annotation="bubble" href="http://turniej.wolnelektury.pl"></g:plusone>
14 <script>
15   new nk_fajne({
16     url: "http://turniej.wolnelektury.pl",
17     type: 4,
18     color: 0,
19     title: "Turniej Elektrybałtów",
20     image: "http://turniej.wolnelektury.pl/turniej.png",
21     description: "Turniej Elektrybałtów - otwarty konkurs na najlepszego automatycznego poetę."
22   });
23 </script>
24 </div>
25
26 <div style='clear: both'></div>
27
28 {% for poet in poets %}
29     <h2><a href="{{ poet.get_absolute_url }}">{{ poet }}</a></h2>
30     <ul class='plain'>
31     {% for poem in poet.contest_poems %}
32         <li><a href="{{ poem.get_absolute_url }}">{{ poem }}</a></li>
33     {% endfor %}
34     </ul>
35 {% endfor %}
36 </ul>
37
38 {% endblock %}