fe0e808b01ecd86208e3a994997c14ad23648c0b
[turniej.git] / apps / poetry / templates / poetry / main.html
1 {% extends "edition1/base.html" %}
2 {% load url from future %}
3
4 {% block "body" %}
5
6 <h1>
7 <a href='{% url "e1_main_page" %}'><img src="{{ STATIC_URL }}img/turniej-maly.png" style='float:left; margin-right: 10px; margin-top: -13px' /></a>
8 Turniej Elektrybałtów</h1>
9
10 <div class="social">
11 <span style="position:relative; top: -5px;" >
12     <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>
13 </span>
14 <g:plusone annotation="bubble" href="http://turniej.wolnelektury.pl"></g:plusone>
15 <script>
16   new nk_fajne({
17     url: "http://turniej.wolnelektury.pl",
18     type: 4,
19     color: 0,
20     title: "Turniej Elektrybałtów",
21     image: "http://turniej.wolnelektury.pl/turniej.png",
22     description: "Turniej Elektrybałtów - otwarty konkurs na najlepszego automatycznego poetę."
23   });
24 </script>
25 </div>
26
27 <h2>Uczestnicy:</h2>
28 <ul class='poet-list'>
29 {% for poet in poets %}
30     <li><a href="{{ poet.get_absolute_url }}">{{ poet }}</a>
31         (<a href="{% url 'poetry_new' poet.slug %}">Twórz-że!</a>)</li>
32 {% endfor %}
33 </ul>
34
35 <div style='clear: both'></div>
36
37 <a class='tworz' href="{% url 'poetry_new' %}">Twórz-że się!</a>
38
39 <h2><a href="{% url 'poetry_contest' %}">Utwory do konkursu zostały wybrane!</a></h2>
40
41 <p>Spośród wygenerowanych przz nas propozycji autorzy programów wybrali po trzy utwory.</p>
42 <p><a href="{% url 'poetry_contest' %}">Zobacz wiersze startujące w konkursie!</a></p>
43 </p>
44
45
46
47
48 <h2>Ostatnio opublikowane utwory:</h2>
49 <ul class='plain'>
50 {% for poem in last %}
51     <li><a href="{{ poem.get_absolute_url }}">{{ poem }}</a></li>
52 {% endfor %}
53 </ul>
54
55 {% endblock %}