monero-site/blog/index.html
c1761e7bca Large scale website redesign update thing
- Updated lots and lots and lots of CSS
- Changed all link colors from orange to black and underlined
- Made site more accessible across the board
- Seriously, look at all the pages and tell me it's not awesomer
- Updated relevant HTML in pages to accomodate
- Changed en.yml Developer Guides translated string to yes (why was it not already?)
- Added images to the Using Monero page for wicked sick purposes
2019-01-18 20:18:55 -07:00

57 lines
1.8 KiB
HTML

---
layout: base
title: titles.allposts
---
<h1 class="text-center">{% t page.title %}</h1>
<div class="site-wrap">
<!-- FULL WIDTH BLOCK -->
<section class="container full">
<div>
{% for post in paginator.posts %}
<div class="post-lead info-block">
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p>
{{ post.summary }}
</p>
<p>
<small>{% t blog.tagged %}:
{% for tag in post.tags %}
<a href="/blog/tags/{{ tag }}.html">[{{ tag }}]</a>
{% endfor %}
</small>
</p>
</div>
{% endfor %}
</div>
</section>
<!-- END FULL WIDTH BLOCK -->
</div>
{% if paginator.total_pages > 1 %}
<div class="text-center page-numbers"><p>
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">&laquo; Prev</a>
{% else %}
<span>&laquo; Prev</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<em>{{ page }}</em>
{% elsif page == 1 %}
<a href="{{ '/blog' | prepend: site.baseurl | replace: '//', '/' }}">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | prepend: '/' | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next &raquo;</a>
{% else %}
<span>Next &raquo;</span>
{% endif %}
</p></div>
{% endif %}