31 lines
978 B
HTML
31 lines
978 B
HTML
{% assign post = site.posts.first %}
|
|
{% if page.is_post == true %}
|
|
{% assign post = page %}
|
|
{% endif %}
|
|
|
|
<div id="home-header" class="container-fluid">
|
|
<div class="cover-image center-vertical"><img class="center-both img-center-fill" src="/images/posts/{{ post.image }}" alt=""></div>
|
|
<div class="cover center-both text-center">
|
|
<h1 class="title">{{ post.title }}</h1>
|
|
</div>
|
|
|
|
<div class="left">
|
|
{% if page.is_post and post.next %}
|
|
<a class="center-both scroll-buttons" href="{{ post.next.url }}">
|
|
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
|
|
<span class="sr-only">Next</span>
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="right">
|
|
{% if page.is_post and post.next %}
|
|
<a class="center-both scroll-buttons" href="{{ post.previous.url }}">
|
|
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
|
|
<span class="sr-only">Previous</span>
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
</div>
|