Add entries to the homepage, and make style tweaks so everywhere looks right

This commit is contained in:
Danielle McLean 2017-10-25 12:55:24 +11:00
parent 172f0d4753
commit 60cd6c911b
Signed by untrusted user: 00dani
GPG key ID: 5A5D2D1AFF12EEC5
4 changed files with 21 additions and 1 deletions

View file

@ -2,6 +2,7 @@
{% load static %}
{% block styles %}
<link rel="stylesheet" type="text/stylus" href="{% static 'home/css/index.styl' %}" />
<link rel="stylesheet" type="text/stylus" href="{% static 'entries/css/h-entry.styl' %}" />
{% endblock %}
{% block main %}
<aside class="author">
@ -35,4 +36,11 @@
</div>
</article>
</aside>
<ol class="list-unstyled entries">
{% for entry in entries %}
<li>
{% include 'entries/h-entry.html' %}
</li>
{% endfor %}
</ol>
{% endblock %}