1 {% extends "base.html" %}
2 {% load url from future %}
5 {% block "extratitle" %}: {{ poet.name }}{% endblock %}
11 <a href='/'><img src="{{ STATIC_URL }}img/turniej-maly.png" style='float:left; margin-right: 10px; margin-top: -13px' /></a>
15 <span style="position:relative; top: -5px;" >
16 <div class="fb-like" data-send="false" data-layout="button_count" data-width="150" data-show-faces="false"></div>
18 <g:plusone annotation="bubble"></g:plusone>
21 url: "{{ request.build_absolute_uri }}",
24 title: "{{ poet.name }}",
25 image: "http://turniej.wolnelektury.pl/turniej.png",
26 description: "Turniej Elektrybałtów - konkurs na najlepszego automatycznego poetę."
31 <p><a href="{% url 'poetry_main' %}">Zobacz wszystkich autorów.</a></p>
33 <p>Autor programu: <strong>{{ poet.author }}</strong></p>
35 <p>{{ poet.description }}</p>
37 <p>Kod źródłowy: <a href="{{ poet.url }}">{{ poet.url }}</a></p>
39 <a class="tworz" href="{% url 'poetry_new' poet.slug %}">Twórz-że!</a>
41 <p>Ostatnio opublikowane utwory:</p>
43 {% for poem in last %}
44 <li><a href="{{ poem.get_absolute_url }}">{{ poem }}</a></li>