Very, very rudimentary support for making h-entries: they don't look so good and don't appear on the homepage yet but it's a good start
This commit is contained in:
parent
430f8d9a1d
commit
950459cd5f
14 changed files with 161 additions and 2 deletions
11
entries/templates/entries/index.html
Normal file
11
entries/templates/entries/index.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
{% extends 'lemoncurry/layout.html' %}
|
||||
{% block html_class %}h-feed{% endblock %}
|
||||
{% block main %}
|
||||
<ol class="list-unstyled">
|
||||
{% for entry in entries %}
|
||||
<li>
|
||||
{% include 'entries/entry.html' %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ol>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue