2015-02-14 19:39:47 +00:00
---
layout: default
title: All Blog Posts
---
2015-02-17 10:52:13 +00:00
< div class = "page-title" >
<!-- Icon is based on work by Freepik (http://www.freepik.com) and is licensed under Creative Commons BY 3.0 -->
2015-02-19 19:25:40 +00:00
< img src = "//static.getmonero.org/images/icon_blog.svg" class = "title-icon" > < h2 class = "inline" > {% t blog.title_1 %} < span class = "purple-kicks" > {% t blog.title_2 %}< / span > {% t blog.title_3 %}< / h2 >
2015-02-17 10:52:13 +00:00
< / div >
2015-02-15 10:30:34 +00:00
2015-02-14 19:39:47 +00:00
{% for post in paginator.posts %}
2015-02-15 10:30:34 +00:00
< h3 > < a href = "{{ post.url }}" > {{ post.title }}< / a > < / h3 >
< blockquote >
2015-02-14 19:39:47 +00:00
{{ post.summary }}
2015-02-15 10:30:34 +00:00
< small > {% t blog.tagged %}:
{% for tag in post.tags %}
2015-02-17 10:52:13 +00:00
[< a href = "/blog/tags/{{ tag }}" > {{ tag }}]< / a >
2015-02-15 10:30:34 +00:00
{% endfor %}
< / small >
< / blockquote >
2015-02-14 19:39:47 +00:00
{% endfor %}
2015-02-17 10:52:13 +00:00
2015-02-14 19:39:47 +00:00
{% if paginator.total_pages > 1 %}
2015-02-23 12:53:00 +00:00
< div class = "text-center" > < h4 >
2015-02-14 19:39:47 +00:00
{% if paginator.previous_page %}
< a href = "{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" > « Prev< / a >
{% else %}
< span > « Prev< / span >
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
< em > {{ page }}< / em >
{% elsif page == 1 %}
2016-10-05 08:50:51 +00:00
< a href = "{{ '/blog' | prepend: site.baseurl | replace: '//', '/' }}" > {{ page }}< / a >
2015-02-14 19:39:47 +00:00
{% else %}
2016-10-05 08:50:51 +00:00
< a href = "{{ site.paginate_path | prepend: '/' | replace: '//', '/' | replace: ':num', page }}" > {{ page }}< / a >
2015-02-14 19:39:47 +00:00
{% endif %}
{% endfor %}
{% if paginator.next_page %}
< a href = "{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" > Next » < / a >
{% else %}
< span > Next » < / span >
{% endif %}
2015-02-23 12:53:00 +00:00
< / h4 > < / div >
2015-02-14 19:39:47 +00:00
{% endif %}