Refactor 'Library' section

and reindented to make it more consistent with the rest of the repo (4 spaces instead of 2)
This commit is contained in:
erciccione 2020-04-15 15:13:45 +02:00
parent 639cf2057d
commit 0a05167032
No known key found for this signature in database
GPG Key ID: 762AF8C608E56CDF
2 changed files with 53 additions and 54 deletions

View File

@ -603,43 +603,35 @@ specs:
library: library:
description: "Below are some publications, books or magazines available for you to download." description: "Below are some publications, books or magazines available for you to download."
books: books: Books
- category: Books zerotomonerov2: "Zero to Monero: Second Edition"
publications: zerotomonerov2p: >
- name: "Zero to Monero: Second Edition" Published: April 4, 2020, with <a href="https://github.com/UkoeHB/Monero-RCT-report">LaTeX source code here</a><br>
file: "Zero-to-Monero-2-0-0.pdf" A comprehensive conceptual (and technical) explanation of Monero.<br>
abstract: > We endeavor to teach anyone who knows basic algebra and simple computer science concepts like the bit representation of a number not only how Monero works at a deep and comprehensive level, but also how useful and beautiful cryptography can be.
Published: April 4, 2020, with <a href="https://github.com/UkoeHB/Monero-RCT-report">LaTeX source code here</a><br> zerotomonerov1: "Zero to Monero: First Edition"
A comprehensive conceptual (and technical) explanation of Monero.<br> zerotomonerov1p: >
We endeavor to teach anyone who knows basic algebra and simple computer science concepts like the bit representation of a number not only how Monero works at a deep and comprehensive level, but also how useful and beautiful cryptography can be. Published: June 26, 2018, with <a href="https://github.com/UkoeHB/Monero-RCT-report">LaTeX source code here</a>
- name: "Zero to Monero: First Edition" masteringmonero: "Mastering Monero"
file: "Zero-to-Monero-1-0-0.pdf" masteringmonerop: >
abstract: > A guide through the seemingly complex world of Monero.<br>
Published: June 26, 2018, with <a href="https://github.com/UkoeHB/Monero-RCT-report">LaTeX source code here</a> It includes:
- name: "Mastering Monero" <ul><li>A broad introduction to blockchains and the importance of privacy - ideal for non-technical users.</li>
file: "https://masteringmonero.com/free-download.html" <li>Discussion of Bitcoins shortcomings and specific solutions provided by Monero.</li>
abstract: > <li>User stories (illustrating how Monero protects your privacy), analogies, examples, legal/ethical discussions, and code snippets illustrating key technical concepts.</li>
A guide through the seemingly complex world of Monero.<br> <li>Details of the Monero decentralized network, peer-to-peer architecture, transaction lifecycle, and security principles.</li>
It includes: <li>Introductions to technical foundations of Monero, intended for developers, engineers, software architects, and curious users.</li>
<ul><li>A broad introduction to blockchains and the importance of privacy - ideal for non-technical users.</li> <li>New developments such as Kovri, Bulletproofs, Multisignature, Hardware Wallets, etc.</li></ul>
<li>Discussion of Bitcoins shortcomings and specific solutions provided by Monero.</li> See <a href="https://masteringmonero.com/">Mastering Monero</a> website for information.
<li>User stories (illustrating how Monero protects your privacy), analogies, examples, legal/ethical discussions, and code snippets illustrating key technical concepts.</li> magazines: Magazines
<li>Details of the Monero decentralized network, peer-to-peer architecture, transaction lifecycle, and security principles.</li> revuoq4: "Revuo Monero Q4 2017"
<li>Introductions to technical foundations of Monero, intended for developers, engineers, software architects, and curious users.</li> revuoq4p: >
<li>New developments such as Kovri, Bulletproofs, Multisignature, Hardware Wallets, etc.</li></ul> Quarterly Monero magazine, Q4 2017 edition.<br>
See <a href="https://masteringmonero.com/">Mastering Monero</a> website for information. In this issue, updates about: development, Monero Research Lab, Kovri, and community.
- category: Magazines revuoq3: "Revuo Monero Q3 2017"
publications: revuoq3p: >
- name: "Revuo Monero Q4 2017" Quarterly Monero magazine, Q3 2017 edition.<br>
file: "Revuo-2017-Q4.pdf" In this issue, updates about: development, Monero Research Lab, Kovri, community, Hardware, and Monerujo.
abstract: >
Quarterly Monero magazine, Q4 2017 edition.<br>
In this issue, updates about: development, Monero Research Lab, Kovri, and community.
- name: "Revuo Monero Q3 2017"
file: "Monero-Revuo-3Q-2017.pdf"
abstract: >
Quarterly Monero magazine, Q3 2017 edition.<br>
In this issue, updates about: development, Monero Research Lab, Kovri, community, Hardware, and Monerujo.
moneropedia: moneropedia:
add_new_button: Add New Entry add_new_button: Add New Entry

View File

@ -5,24 +5,31 @@ permalink: /library/index.html
--- ---
{% t global.lang_tag %} {% t global.lang_tag %}
<div class="about-monero"> <div class="about-monero">
<div class="center-xs container description"> <div class="center-xs container description">
<p class="text-center">{% t library.description %}</p> <p class="text-center">{% t library.description %}</p>
</div> </div>
{% for book in site.translations[site.lang].library.books %}
<section class="container full"> <section class="container full">
<div class="info-block text-adapt"> <div class="info-block text-adapt">
<h2>{{ book.category }}</h2> <h2>{% t library.books %}</h2>
<div> <div>
{% for publication in book.publications %} <h3><a href="Zero-to-Monero-2-0-0.pdf">{% t library.zerotomonerov2 %}</a></h3>
{% if publication.file contains 'https' %} <p>{% t library.zerotomonerov2p %}</p>
<h3><a href="{{ publication.file }}">{{ publication.name }}</a></h3> <h3><a href="Zero-to-Monero-1-0-0.pdf">{% t library.zerotomonerov1 %}</a></h3>
{% else %} <p>{% t library.zerotomonerov1p %}</p>
<h3><a href="{{ site.baseurl_root }}/library/{{ publication.file }}">{{ publication.name }}</a></h3> <h3><a href="https://masteringmonero.com/free-download.html">Mastering Monero</a></h3>
{% endif %} <p>{% t library.masteringmonerop %}</p>
<p>{{ publication.abstract }}</p> </div>
{% endfor %} </div>
</section>
<section class="container full">
<div class="info-block text-adapt">
<h2>{% t library.magazines %}</h2>
<div>
<h3><a href="{{ site.baseurl_root }}/library/Revuo-2017-Q4.pdf">Revuo Monero Q4 2017</a></h3>
<p>{% t library.revuoq4p %}</p>
<h3><a href="{{ site.baseurl_root }}/library/Monero-Revuo-3Q-2017.pdf">Revuo Monero Q3 2017</a></h3>
<p>{% t library.revuoq3p %}</p>
</div>
</div> </div>
</div>
</section> </section>
{% endfor %}
</div> </div>