gergelypolonkai-web-jekyll/index.html
Gergely Polonkai 558fe992ae Add link to all the blog posts at the index bottom
It lacked that button since I moved to Jekyll…
2016-10-04 15:01:43 +02:00

31 lines
615 B
HTML

---
layout: default
title: Gergely Polonkai
post_listing: true
---
<div class="jumbotron">
<h1 class="text-right">
Gergely Polonkai<br>
<small>developer, systems engineer and administrator</small>
</h1>
</div>
<div class="container">
<h3>Blog posts</h3>
</div>
{% assign posts = site.posts %}
{% assign post_limit = 6 %}
{% include post-list.html %}
<nav>
<ul class="pager">
<li class="next">
<a href="{{ site_url }}/blog/">
Take me to all the blog posts! <span aria-hidden="true">&rarr;</span>
</a>
</li>
</ul>
</nav>