diff --git a/xmrnodes/app.py b/xmrnodes/app.py index 5c1c519..9e02bb6 100644 --- a/xmrnodes/app.py +++ b/xmrnodes/app.py @@ -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(): diff --git a/xmrnodes/static/css/style.css b/xmrnodes/static/css/style.css index edf77d7..7cedb56 100644 --- a/xmrnodes/static/css/style.css +++ b/xmrnodes/static/css/style.css @@ -57,3 +57,7 @@ input[type="text"] { .pure-table { margin: 0 auto; } + +.container2 { + padding: 4em; +} diff --git a/xmrnodes/templates/base.html b/xmrnodes/templates/base.html index 51fdf4f..6039c88 100644 --- a/xmrnodes/templates/base.html +++ b/xmrnodes/templates/base.html @@ -49,7 +49,9 @@ diff --git a/xmrnodes/templates/resources.html b/xmrnodes/templates/resources.html new file mode 100644 index 0000000..9c45aef --- /dev/null +++ b/xmrnodes/templates/resources.html @@ -0,0 +1,53 @@ +{% extends 'base.html' %} + +{% block content %} + +
+
+

What Is This Site?

+

+ This site is just a simple list of servers powering the cryptocurrency network of Monero, a private, digital currency (cryptocurrency). +

+ +

How Do I Use Monero?

+

+ 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: +

+ + +

Isn't Cryptocurrency for Criminals?

+

+ 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. +

+ +

Why Monero and not ____?

+

+ 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. +

+

+ Monero is one of very few truly fungible, + private cryptocurrencies that exist today. +

+ +
+
+ Go Home +
+
+ +{% endblock %}