adding resources

This commit is contained in:
lza_menace 2020-10-24 02:35:50 -07:00
parent c34c4605af
commit 69262619fe
4 changed files with 63 additions and 1 deletions

View File

@ -61,6 +61,9 @@ def index():
form=form
)
@app.route("/resources")
def resources():
return render_template("resources.html")
@app.route("/add", methods=["GET", "POST"])
def add():

View File

@ -57,3 +57,7 @@ input[type="text"] {
.pure-table {
margin: 0 auto;
}
.container2 {
padding: 4em;
}

View File

@ -49,7 +49,9 @@
<div id="footer" class="center">
<a href="https://twitter.com/lza_menace" target="_blank">Holler at me</a>
-
<a href="https://github.com/lalanza808/monero-node-lists" target="_blank">Source Code</a>
<a href="https://github.com/lalanza808/monero.fail" target="_blank">Source Code</a>
-
<a href="{{ url_for('resources') }}">Resources</a>
</div>
</body>

View File

@ -0,0 +1,53 @@
{% extends 'base.html' %}
{% block content %}
<div id="resources" class="container2">
<div>
<h3>What Is This Site?</h3>
<p>
This site is just a simple list of servers powering the cryptocurrency network of <a href="https://web.getmonero.org/get-started/what-is-monero/" target="_blank">Monero</a>, a private, digital currency (cryptocurrency).
</p>
<h3>How Do I Use Monero?</h3>
<p>
In order to send and receive Monero you need to have the software installed on either your phone or computer.
Try out these popular Monero projects:
</p>
<ul>
<li><a href="https://featherwallet.org/" target="_blank">Feather (desktop)</a></li>
<li><a href="https://www.getmonero.org/downloads/" target="_blank">Official Community Funded Monero Software (desktop)</a></li>
<li><a href="https://cakewallet.com/" target="_blank">Cake Wallet (iOS, Android)</a></li>
<li><a href="https://www.monerujo.io/" target="_blank">Monerujo (Android)</a></li>
<li><a href="https://mymonero.com/" target="_blank">MyMonero (Desktop, Web)</a></li>
</ul>
<h3>Isn't Cryptocurrency for Criminals?</h3>
<p>
No, but this is a common misconception.
Cryptocurrencies are built by and for the people of the world in an attempt
to fill in the gaps where our existing institutions have failed us.
There is nothing wrong with people exchanging goods and services with one another
and transacting with whatever they believe has value; this is a human right.
</p>
<h3>Why Monero and not ____?</h3>
<p>
Monero has a long history of being open, honest, professional, and community-focused.
It is built with first-class privacy features that protects it's users from snooping and blockchain analysis.
The nature of most cryptocurrencies is that they use transparent ledgers,
meaning anyone in the world can view your wallet balance and transactions;
there is very little privacy focus.
</p>
<p>
Monero is one of very few truly fungible,
private cryptocurrencies that exist today.
</p>
</div>
<div class="center">
<a href="/" class="pure-button">Go Home</a>
</div>
</div>
{% endblock %}