finalization

This commit is contained in:
sakrecoer 2020-08-04 12:07:59 +02:00
parent 8fcda1a3d0
commit 4fc28d4906
16 changed files with 174 additions and 177 deletions

View file

@ -159,18 +159,18 @@ layout: default
<h2>Check out more</h2>
<div class="post-nav">
{% if page.previous.url %}
<h3>{{page.previous.title}}</h3>
<h3><a href="{{page.previous.url}}" alt="Read {{page.previous.title}}" title="Read {{page.previous.title}}"><span
class="fas fa-arrow-left"></span>&nbsp;{{page.previous.title}}</a></h3>
<p>{{ page.previous.description }}</p>
<h4><a href="{{page.previous.url}}" alt="Read {{page.previous.title}}" title="Read {{page.previous.title}}"><span
class="fas fa-arrow-left"></span>&nbsp;Previous</a></h4>
{% endif %}
</div>
<div class="post-nav-next">
{% if page.next.url%}
<h3>{{page.next.title}}</h3>
<h3><a href="{{page.next.url}}">{{page.next.title}}&nbsp;<span class="fas fa-arrow-right"></span></a></h3>
<p>{{ page.next.description }}</p>
<h4><a href="{{page.next.url}}">Next&nbsp;<span class="fas fa-arrow-right"></span></a></h4>
{% endif %}
</div>
@ -307,6 +307,8 @@ layout: default
<section class="info">
<div>
{{ content }}
<p>&nbsp;</p>
<p style="text-align: center;"><a href="{{ page.link }}" class="button">Check it out</a></p>
</div>
</section>
{% include streamer.html %}
@ -317,16 +319,16 @@ layout: default
<div class="post-nav">
{% if page.previous.url %}
<h4><a href="{{page.previous.url}}" alt="Read {{page.previous.title}}" title="Read {{page.previous.title}}"><span
class="fas fa-arrow-left"></span>&nbsp;Previous Post</a></h4>
<h3>{{page.previous.title}}</h3>
<h3><a href="{{page.previous.url}}" alt="Read {{page.previous.title}}" title="Read {{page.previous.title}}"><span
class="fas fa-arrow-left"></span>&nbsp;{{page.previous.title}}</a></h3>
<p>{{ page.previous.description }}</p>
{% endif %}
</div>
<div class="post-nav-next">
{% if page.next.url%}
<h4><a href="{{page.next.url}}">Next Post&nbsp;<span class="fas fa-arrow-right"></span></a></h4>
<h3>{{page.next.title}}</h3>
<h3><a href="{{page.next.url}}">{{page.next.title}}&nbsp;<span class="fas fa-arrow-right"></span></a></h3>
<p>{{ page.next.description }}</p>
{% endif %}
</div>