forked from 00dani/lemoncurry
17 lines
395 B
HTML
17 lines
395 B
HTML
{% extends 'lemoncurry/layout.html' %}
|
|
{% load static %}
|
|
{% block html_class %}h-feed{% endblock %}
|
|
|
|
{% block styles %}
|
|
<link rel="stylesheet" type="text/stylus" href="{% static 'entries/css/h-entry.styl' %}" />
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<ol class="list-unstyled entries">
|
|
{% for entry in entries %}
|
|
<li>
|
|
{% include 'entries/h-entry.html' %}
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|
|
{% endblock %}
|