mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-17 08:18:03 +00:00
1d534a4a04
It's not compatible with Weblate and will be not needed after the migration
28 lines
923 B
Markdown
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>
|