261a7493f87996ca854e6ce8af4c80bb24dc8efa
[turniej.git] / apps / poetry / templates / poetry / poem.html
1 {% load url from future %}
2 <!doctype html>
3 <html>
4 <head>
5     <title>Turniej Elektrybałtów: {{ poem }}</title>
6     <meta charset="utf-8" />
7
8     <link rel="shortcut icon" href="{{ STATIC_URL }}img/favicon.ico" />
9     <style type="text/css">
10     @import "{{ STATIC_URL }}poetry/poem.css";
11     </style>
12 </head>
13
14 <body>
15
16 <div id="fb-root"></div>
17 <script>(function(d, s, id) {
18   var js, fjs = d.getElementsByTagName(s)[0];
19   if (d.getElementById(id)) {return;}
20   js = d.createElement(s); js.id = id;
21   js.src = "//connect.facebook.net/pl_PL/all.js#xfbml=1";
22   fjs.parentNode.insertBefore(js, fjs);
23 }(document, 'script', 'facebook-jssdk'));</script>
24 <script src="http://0.s-nk.pl/script/nk_widgets/nk_widget_fajne_embed"></script>
25
26         <div id="menu">
27             <a href='{% url "poetry_new" %}' class='menu-link'>Twórzże się jeszcze raz!</a>
28             <span style='float: right'>Turniej Elektrybałtów</a>
29         </div>
30
31         <div id="header">
32             <div id="logo">
33                 <a href="{% url "e1_main_page" %}"><img src="{{ STATIC_URL }}img/turniej-maly.png" alt="logo Turnieju Elektrybałtów" /></a>
34             </div>
35         </div>
36
37         <div id="book-text">
38             <h1>
39                 <span class="author"><a href="{{ poem.poet.get_absolute_url }}">{{ poem.poet.name }}</a></span>
40                 <span class="title">{% if poem.title %}{{ poem.title }}{% else %}***{% endif %}</span>
41             </h1>
42             {{ poem.text|linebreaksbr }}
43         <div id="footnotes" >
44             <h3>O utworze</h3>
45             <p>Autor: <a href="{{ poem.poet.get_absolute_url }}">{{ poem.poet.name }}</a> (<a href="{% url 'poetry_main' %}">wszyscy autorzy</a>).
46                 <br/>Zobacz <a href="{% url 'poetry_new' poem.poet.slug %}">nowy wiersz</a> tego autora,
47                 albo <a href="{% url 'poetry_new' %}">nowy wiersz dowolnego autora</a>.</p>
48
49
50
51 <div>
52 <h3>Podziel się wierszem!</h3>
53 <span style="position:relative; top: -5px;" >
54     <div class="fb-like" data-href="http://turniej.wolnelektury.pl{{ poem.get_absolute_url }}" data-send="false" data-layout="button_count" data-width="150" data-show-faces="false"></div>
55 </span>
56 <g:plusone annotation="bubble" href="http://turniej.wolnelektury.pl{{ poem.get_absolute_url }}"></g:plusone>
57
58 <script>
59   new nk_fajne({
60     url: "http://turniej.wolnelektury.pl{{ poem.get_absolute_url }}",
61     type: 4,
62     color: 0,
63     title: "wiersz",
64     image: "http://turniej.wolnelektury.pl/turniej.png",
65     description: "{{ poem }}"
66   });
67 </script>
68     <br/>
69         albo użyj linku:<br/>
70         <a class="permalink" href="{{ poem.get_absolute_url }}">http://turniej.wolnelektury.pl{{ poem.get_absolute_url }}</a>
71 </div>
72
73
74
75
76         </div>
77
78 <script type="text/javascript" src="https://apis.google.com/js/plusone.js">
79   {lang: 'pl'}
80 </script>
81 {{ piwik_tag|safe }}
82 </body>
83
84
85 </html>
86
87