mirror of
https://github.com/monero-project/monero-site.git
synced 2024-12-15 12:56:36 +02:00
27 lines
917 B
Markdown
27 lines
917 B
Markdown
|
---
|
||
|
layout: custom
|
||
|
title: titles.library
|
||
|
permalink: /library/index.html
|
||
|
---
|
||
|
<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">
|
||
|
<h2>{{ book.category }}</h2>
|
||
|
<div>
|
||
|
{% for publication in book.publications %}
|
||
|
<h3><a href="{{ site.baseurl_root }}/library/{{ publication.file }}">{{ publication.name }}</a></h3>
|
||
|
<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://github.com/monero-project/monero-site/blob/master/README.md">README</a>.</p>
|
||
|
</div>
|