add some css elements to the blog template

This commit is contained in:
Carl Suckfuell 2023-10-28 13:27:11 +02:00
parent c3fe78040b
commit f049281f73

View file

@ -5,14 +5,16 @@
{% set posts = get_section(path="blogposts/_index.md") %} {% set posts = get_section(path="blogposts/_index.md") %}
{% for post in posts.pages %} {% for post in posts.pages %}
<h2><a href="{{ get_url(path=post.path) }}" title="{{ post.title }}">{{ post.title }}</a></h2> <h2 class="fg8" style="margin-bottom: 0px;"><a
<p class="date">{{ post.date }}</p> href="{{ get_url(path=post.path) }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<div class="post-content"> <p class="fg4" style="margin-bottom: 0px;margin-top: 0px;">{{ post.date }}</p>
<div class="fg12">
{% if post.summary %} {% if post.summary %}
{{ post.summary | safe }} {{ post.summary | safe }}
{% else %} {% else %}
{{ post.content | safe }} {{ post.content | safe }}
{% endif %} {% endif %}
<hr style="margin-bottom: 1.5em">
</div> </div>
{% endfor %} {% endfor %}
{% endblock content %} {% endblock content %}