monero-site/library/index.md

29 lines
923 B
Markdown
Raw Normal View History

---
layout: custom
title: titles.library
permalink: /library/index.html
---
{% t global.lang_tag %}
<div class="about-monero">
<div class="center-xs container description">
<p class="text-center">{% t library.description %}</p>
</div>
{% for book in site.translations[site.lang].library.books %}
<section class="container full">
<div class="info-block text-adapt">
<h2>{{ book.category }}</h2>
<div>
{% for publication in book.publications %}
{% if publication.file contains 'https' %}
<h3><a href="{{ publication.file }}">{{ publication.name }}</a></h3>
{% else %}
<h3><a href="{{ site.baseurl_root }}/library/{{ publication.file }}">{{ publication.name }}</a></h3>
{% endif %}
<p>{{ publication.abstract }}</p>
{% endfor %}
</div>
</div>
</section>
{% endfor %}
</div>