mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-17 00:07:54 +00:00
32 lines
1.1 KiB
Markdown
32 lines
1.1 KiB
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>
|
|
|
|
<div class="untranslated {% t library.translated %}">
|
|
<p>{% t global.untranslated %} <a class="untranslated-link" href="https://repo.getmonero.org/monero-project/monero-site/blob/master/README.md#140-how-to-translate-a-page">README</a>.</p>
|
|
</div>
|