monero-site/library/index.md
c1761e7bca Large scale website redesign update thing
- Updated lots and lots and lots of CSS
- Changed all link colors from orange to black and underlined
- Made site more accessible across the board
- Seriously, look at all the pages and tell me it's not awesomer
- Updated relevant HTML in pages to accomodate
- Changed en.yml Developer Guides translated string to yes (why was it not already?)
- Added images to the Using Monero page for wicked sick purposes
2019-01-18 20:18:55 -07:00

28 lines
No EOL
988 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 %}
<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://repo.getmonero.org/monero-project/monero-site/blob/master/README.md#140-how-to-translate-a-page">README</a>.</p>
</div>