mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-16 15:58:16 +00:00
c1761e7bca
- 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
57 lines
1.8 KiB
HTML
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: '//', '/' }}">« Prev</a>
|
|
{% else %}
|
|
<span>« 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 »</a>
|
|
{% else %}
|
|
<span>Next »</span>
|
|
{% endif %}
|
|
</p></div>
|
|
{% endif %}
|