Simple update.
[turniej.git] / apps / poetry / templates / poetry / main.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</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 <h2>Uczestnicy:</h2>
27 <ul class='poet-list'>
28 {% for poet in poets %}
29     <li><a href="{{ poet.get_absolute_url }}">{{ poet }}</a>
30         (<a href="{% url 'poetry_new' poet.slug %}">Twórz-że!</a>)</li>
31 {% endfor %}
32 </ul>
33
34 <div style='clear: both'></div>
35
36 <a class='tworz' href="{% url 'poetry_new' %}">Twórz-że się!</a>
37
38 <h2><a href="{% url 'poetry_contest' %}">Utwory do konkursu zostały wybrane!</a></h2>
39
40 <p>Spośród wygenerowanych przz nas propozycji autorzy programów wybrali po trzy utwory.</p>
41 <p><a href="{% url 'poetry_contest' %}">Zobacz wiersze startujące w konkursie!</a></p>
42 </p>
43
44
45
46
47 <h2>Ostatnio opublikowane utwory:</h2>
48 <ul class='plain'>
49 {% for poem in last %}
50     <li><a href="{{ poem.get_absolute_url }}">{{ poem }}</a></li>
51 {% endfor %}
52 </ul>
53
54 {% endblock %}