You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
983 B
28 lines
983 B
{% extends "base.html" %} |
|
{% block title %}{{ article.title }}{% endblock %} |
|
{% block content %} |
|
<section id="content" class="body"> |
|
<article> |
|
<header> <h1 class="entry-title"><a href="{{ article.url }}" |
|
rel="bookmark" title="Permalink na {{ article.title|striptags }}">{{ article.title |
|
}}</a></h1> {% include 'twitter.html' %} {% include |
|
'google_plusone.html' %} </header> |
|
<div class="entry-content"> |
|
{% include 'article_infos.html' %} |
|
{{ article.content }} |
|
</div><!-- /.entry-content --> |
|
|
|
{% if article.photo_gallery %} |
|
<div class="gallery"> |
|
{% for title, gallery in article.photo_gallery %} |
|
<h1>{{ title }}</h1> |
|
{% for name, photo, thumb, exif, caption in gallery %} |
|
<a href="{{ SITEURL }}/{{ photo }}" title="{{ name }}" exif="{{ exif }}" caption="{{ caption }}"><img src="{{ SITEURL }}/{{ thumb }}"></a> |
|
{% endfor %} |
|
{% endfor %} |
|
</div> |
|
{% endif %} |
|
|
|
</article> |
|
</section> |
|
{% endblock %}
|
|
|