finalized topic.jinja2
This commit is contained in:
@@ -152,26 +152,23 @@
|
||||
|
||||
<h2 class="text-center">DERNIERES PUBLICATIONS</h2>
|
||||
|
||||
<ul>
|
||||
{% for entry in last_five %}
|
||||
<div class="col-xs-10">
|
||||
<li>
|
||||
{{ entry.edited.strftime("%d-%m-%Y") }}
|
||||
<a href="{{ request.route_url('blog', id=entry.id, slug=entry.slug) }}">
|
||||
<span class="glyphicon glyphicon-triangle-right"></span> {{ entry.title }}
|
||||
<span class="glyphicon glyphicon-menu-right"></span> {{ entry.title }}
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-xs-2">
|
||||
[ {{ entry.topic_name }} ]
|
||||
</div>
|
||||
</li>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
<br>
|
||||
<p class="text-center">---</p>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
<!-- Container (Contact Section) -->
|
||||
<div id="contact">
|
||||
<br >
|
||||
<h2 class="text-center">CONTACT</h2>
|
||||
<p class="text-center"><em>Laissez nous un message!</em></p>
|
||||
|
||||
|
||||
@@ -7,19 +7,17 @@
|
||||
[Nouveau post]</a>
|
||||
</p>
|
||||
{% endif%}
|
||||
<div class="row">
|
||||
{% for entry in items %}
|
||||
<div class="col-xs-9">
|
||||
<li>
|
||||
<a href="{{ request.route_url('blog', id=entry.id, slug=entry.slug) }}">{{ entry.title }}</a>
|
||||
</li>
|
||||
</div>
|
||||
<div class="col-xs-3">
|
||||
{{ entry.edited[:10] }} -
|
||||
{{ entry.tag_name }}
|
||||
</div>
|
||||
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<ul>
|
||||
{% for entry in items %}
|
||||
<li>
|
||||
{{ entry.edited.strftime("%d-%m-%Y") }}
|
||||
<a href="{{ request.route_url('blog', id=entry.id, slug=entry.slug) }}">
|
||||
<span class="glyphicon glyphicon-menu-right"></span> {{ entry.title }}
|
||||
</a>
|
||||
</li>
|
||||
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user