From d0c0c00bca44ec22f02776e664aab72fef8a43a9 Mon Sep 17 00:00:00 2001 From: Riccardo Spagni <ric@spagni.net> Date: Tue, 17 Feb 2015 19:55:38 +0200 Subject: [PATCH] static pages, initial choose a client page --- _layouts/post.html | 11 +++++---- _layouts/static_page.html | 23 ++++++++++++++++++ _strings_en.yml | 1 + getting-started/choose.md | 49 +++++++++++++++++++++++++++++++++++++++ 4 files changed, 79 insertions(+), 5 deletions(-) create mode 100644 _layouts/static_page.html create mode 100644 getting-started/choose.md diff --git a/_layouts/post.html b/_layouts/post.html index 5e6d1867..53c5b418 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -21,13 +21,14 @@ layout: default <article> <header> - <h2>{{ page.title }}</h2> - <span><i class="icon-clock"></i><time datetime="{{ page.date | global.date }}">{{ page.date | global.date }}</time></span><br/> - <span class="category"><i class="icon-tag"></i> {{ page.categories | category_links }}</span><br/> - <span class="author"><i class="icon-user"></i> {% if page.author %}{{page.author}}{% else %}{{site.author}}{% endif%}</span> + <div class="page-title"> + <!-- Icon is based on work by Freepik (http://www.freepik.com) and is licensed under Creative Commons BY 3.0 --> + <img src="//static.monero.cc/images/icon_blog_post.svg" class="title-icon"><h2 class="inline">{{ page.title }}</h2> + </div> + <span class="author">{% t blog.author %}: {% if page.author %}{{page.author}}{% else %}{{site.author}}{% endif%}</span> </header> - <div class="entry">{{ content }}</div> + <p>{{ content }}</p> <footer><p id="post-meta">{{ tags_content }}</p></footer> diff --git a/_layouts/static_page.html b/_layouts/static_page.html new file mode 100644 index 00000000..3ceca753 --- /dev/null +++ b/_layouts/static_page.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> + + {% include head.html %} + + <body> + + {% include header.html %} + + <div class="container main-content"> + <div class="page-title"> + {{ page.attribution }} + <img src="//static.monero.cc/images/{{ page.icon }}.svg" class="title-icon"><h2 class="inline">{{ page.title-pre-kick }} <span class="{{ page.kick-class }}">{{ page.title-kick }}</span> {{ page.title-post-kick }}</h2> + </div> + + {{ content }} + </div> + + {% include footer.html %} + + </body> + +</html> diff --git a/_strings_en.yml b/_strings_en.yml index c1a11b5f..b66d428e 100644 --- a/_strings_en.yml +++ b/_strings_en.yml @@ -88,6 +88,7 @@ blog: title_2: Blog title_3: Posts tagged: Tagged under + author: Posted by tags: all: Articles by Tag notags: There are no posts for this tag. \ No newline at end of file diff --git a/getting-started/choose.md b/getting-started/choose.md new file mode 100644 index 00000000..65c686e6 --- /dev/null +++ b/getting-started/choose.md @@ -0,0 +1,49 @@ +--- +layout: static_page +title: "How to Choose a Monero Client" +title-pre-kick: "How to Choose a " +title-kick: "Monero Client" +title-post-kick: "" +kick-class: "green-kicks" +icon: "icon_client" +attribution: "<!-- Icon is based on work by Freepik (http://www.freepik.com) and is licensed under Creative Commons BY 3.0 -->" +--- + +### Mobile, Web, and Lightweight Clients + +The clients below are ideal if you are using Monero for the first time. They are also useful if you are on a device that cannot run a [full Monero node](/getting-started/running). + +--- + +{:.text-center} +[<img style="width: 360px; padding-bottom: 10px;" src="//static.monero.cc/images/clients/mymonero.svg" /> +MyMonero is an easy-to-use Monero client that you can use on most desktop and mobile devices without installing anything. +It can be used with some measure of safety, as MyMonero are unable to spend your funds on your behalf. +It is owned and operated by Riccardo Spagni, one of the Monero Core Team members.](https://mymonero.com) + +--- + +### Full Monero Client + +If you are able to spare the bandwidth and disk space required to run a full node, doing so helps keep the network stable and robust, and also affords you the maximum privacy Monero has to offer. + +--- + +{:.text-center} +<img style="width: 360px;" src="//static.monero.cc/images/logo.svg" /> +You can read our guide on [running a Monero node](/getting-started/running), and the Monero core software can be downloaded from the [downloads page](/downloads). + +--- + +### Unofficial Clients + +There are also a handful of unofficial clients that interact with the official Monero core daemon, and are able to provide their own additional functionality. + +--- + +{:.text-center} +[Monero Client .NET +A GUI for Monero written in .NET and available for Windows, Mac, and Linux. +Written and maintained by Jojatekok.](https://bitcointalk.org/index.php?topic=683365.00) + +--- \ No newline at end of file