monero-site/library/index.md
erciccione 1d534a4a04
Remove 'untranslated' snippet logic from all pages (except where it's called using 'include')
It's not compatible with Weblate and will be not needed after the migration
2020-01-27 12:26:31 +01:00

28 lines
923 B
Markdown

---
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>