more images, more content

This commit is contained in:
Jan Krutisch 2022-10-20 22:28:47 +02:00
parent 459e385622
commit d5bfc60bef
9 changed files with 130 additions and 6 deletions

View file

@ -15,13 +15,13 @@ background: '/img/bg-default.jpg'
<h3 class="post-subtitle">{{ post.excerpt | strip_html | truncatewords: 15 }}</h3>
{% endif %}
</a>
<p class="post-meta">Posted by
<p class="post-meta">Geschrieben von
{% if post.author %}
{{ post.author }}
{% else %}
{{ site.author }}
{% endif %}
on {{ post.date | date: '%B %d, %Y' }} &middot; {% include read_time.html content=post.content %}
am {{ post.date | date: '%d.%m.%Y' }}
</p>
</article>
@ -36,11 +36,11 @@ background: '/img/bg-default.jpg'
{% if paginator.previous_page %}
<a class="btn btn-primary float-left" href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">&larr;
Newer<span class="d-none d-md-inline"> Posts</span></a>
Neuere<span class="d-none d-md-inline"> Artikel</span></a>
{% endif %}
{% if paginator.next_page %}
<a class="btn btn-primary float-right" href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older<span class="d-none d-md-inline"> Posts</span> &rarr;</a>
<a class="btn btn-primary float-right" href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Ältere<span class="d-none d-md-inline"> Artikel</span> &rarr;</a>
{% endif %}
</div>