Initial commit with site and first Revuo Weekly issue

This commit is contained in:
2019-03-28 22:32:42 -06:00
commit 8d5620cdff
44 changed files with 1773 additions and 0 deletions

1
_includes/footer.html Normal file
View file

@ -0,0 +1 @@
<footer class="footer"><span>2019 - Revuo Monero</span></footer>

19
_includes/head.html Normal file
View file

@ -0,0 +1,19 @@
<head>
<!-- Meta -->
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta name="generator" content="Jekyll">
<title>{%if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="Revuo Monero is a weekly newsletter where you can find find the most recent Monero news.">
<meta name="keywords" content="monero, xmr, bitmonero, cryptocurrency">
<link rel="icon" type="image/png" sizes="32x32" href="/img/revuo-icon.png">
<!-- CSS & fonts -->
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl | replace: '//', '/' }}">
<link href='https://fonts.googleapis.com/css?family=PT+Sans:400,700|PT+Serif:400,700' rel='stylesheet' type='text/css'>
<!-- RSS -->
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="ATOM Feed" />
</head>

View file

@ -0,0 +1,5 @@
<header id="header">
<!-- Your custom header here -->
</header>

6
_includes/header.html Normal file
View file

@ -0,0 +1,6 @@
<header id="header">
<a href="{{ site.baseurl }}">
<!--img src="{{ "/img/emerald.svg" | prepend: site.baseurl | replace: '//', '/' }}" alt="Emerald Logo"-->
<h1>Revuo Monero</h1>
</a>
</header>

2
_includes/link.html Normal file
View file

@ -0,0 +1,2 @@
<a href="https://github.com/KingFelix/emerald/archive/master.zip">Download</a>
<a href="https://github.com/KingFelix/emerald">Project on Github</a>

21
_includes/menu.html Normal file
View file

@ -0,0 +1,21 @@
<nav {% if site.reverse == true %}id="nav-left"{% else %}id="nav"{% endif %}>
<div id="nav-list">
<a href="{{ site.baseurl }}">Home</a>
<!-- Nav pages -->
{% for page in site.pages %}
{% if page.layout == "page" %}
<a href="{% if site.baseurl == "/" %}{{ page.url }}{% else %}{{ page.url | prepend: site.baseurl }}{% endif %}" title="{{ page.title }}">{{ page.title }}</a>
{% endif %}
{% endfor %}
</div>
<!-- Nav footer -->
{% if site.custom_nav_footer == true %}
{% include nav-footer-custom.html %}
{% else %}
{% include nav-footer.html %}
{% endif %}
</nav>

View file

@ -0,0 +1,5 @@
<footer>
<!-- Your custom nav footer here -->
</footer>

View file

@ -0,0 +1,5 @@
<footer>
<a href="https://ww.getmonero.org/" target="_blank"><span>Monero Website</span></a>
</footer>

1
_includes/script.html Normal file
View file

@ -0,0 +1 @@
<script src="{{ "/js/main.js" | prepend: site.baseurl | replace: '//', '/' }}"></script>