added first version of theme

This commit is contained in:
2019-10-26 00:15:49 +02:00
parent fe42752335
commit c196fcf7a8
51 changed files with 6296 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<div class="pagination">
<div class="pagination_buttons">
{{ if .Paginator.HasPrev }}
<span class="button previous">
<a href="{{ .Paginator.Prev.URL }}">
<span class="previous button_icon">
<i class="fa fa-lg fa-arrow-left"></i>
</span>
<span class="button_text">Newer posts</span>
</a>
</span>
{{ end }}
{{ if .Paginator.HasNext }}
<span class="button next">
<a href="{{ .Paginator.Next.URL }}">
<span class="button_text">Older posts</span>
<span class="next button_icon">
<i class="fa fa-lg fa-arrow-right"></i>
</span>
</a>
</span>
{{ end }}
</div>
</div>