fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/shelfzilla/themes/bootflat/templates/blog/list.html

25 lines
791 B
HTML

{% extends "blog/_layout.html" %}
{% load i18n %}
{% block main_content %}
<div class="container">
<ul class="media-list">
{% for item in page.object_list %}
<li class="media well {% if item.draft %}draft{% endif %}">
<a class="pull-left" href="#">
<!--<img class="media-object img-rounded" src="{{ item.author.avatar }}">-->
</a>
<div class="media-body">
<h2 class="media-heading">{{ item.title }}</h2>
<div>
Por <strong>{{ item.author.first_name }}</strong> el
<time datetime="{{ item.date }}" pubdate="" data-updated="true">{{ item.date }}</time>
</div>
<p>{{ item.content|safe }}</p>
</div>
</li>
{% endfor %}
</ul>
</div>
{% endblock %}