fnp
/
prawokultury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
110c1cf81e4611bb03c9ffbaa9af4971a119bde7
[prawokultury.git]
/
migdal
/
templates
/
migdal
/
entry
/
entry_promobox.html
1
{% load i18n %}
2
3
4
<li class="promobox-item" style="
5
{% if object.image %}
6
background: url('{{ object.image.url }}');
7
background-size:100%;
8
background-position: 50% 50%;
9
{% else %}
10
background: white;
11
{% endif %}
12
">
13
14
<a class="promobox-link" href="{{ object.get_absolute_url }}">
15
16
17
<div class="promobox-info">
18
<div class="clip">
19
<h2>{{ object.title }}</h2>
20
21
<div class="lead">
22
{{ object.lead }}
23
</div>
24
</div>
25
</div>
26
27
</a>
28
</li>