Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • rehrar/revuo-weekly
  • maravelle/revuo-weekly
2 results
Show changes
Commits on Source (164)
Showing
with 77 additions and 60 deletions
...@@ -9,7 +9,7 @@ markdown: kramdown ...@@ -9,7 +9,7 @@ markdown: kramdown
source: . source: .
destination: ./_site destination: ./_site
permalink: /:title permalink: /:title
paginate: 4 paginate: 6
paginate_path: /page:num/ paginate_path: /page:num/
# Default values # Default values
...@@ -25,7 +25,6 @@ defaults: ...@@ -25,7 +25,6 @@ defaults:
plugins: plugins:
- jekyll-paginate - jekyll-paginate
- jekyll-feed - jekyll-feed
- jekyll-seo-tag
# Custom variables # Custom variables
version: "1.1.0" version: "1.1.0"
......
<footer class="footer"><span>2019 - Revuo Monero</span></footer> <footer class="footer"><span>2021 - Revuo Monero</span></footer>
\ No newline at end of file \ No newline at end of file
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
<meta charset="UTF-8"/> <meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta name="generator" content="Jekyll"> <meta name="generator" content="Jekyll">
<title>{%if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title> <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="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"> <meta name="keywords" content="monero, xmr, bitmonero, cryptocurrency">
...@@ -11,7 +10,16 @@ ...@@ -11,7 +10,16 @@
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="32x32" href="/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png"> <link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png">
{% if page.path contains '_posts' %}
<link rel="canonical" href="{{ page.issuenumber | replace:'index.html','' | prepend: "https://localmonero.co/revuo/weekly/" }}" />
{%elsif page.periodical == "yes"%}
<link rel="canonical" href="{{ page.issuenumber | replace:'index.html','' | prepend: "https://localmonero.co/revuo/periodical/" }}" />
{%else%}
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: "https://localmonero.co/revuo" }}" />
{%endif%}
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Revuo Monero - {{page.title}}">
<meta name="twitter:image" content="https://revuo-monero.com{{ page.image }}">
<!-- CSS & fonts --> <!-- CSS & fonts -->
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl | replace: '//', '/' }}"> <link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl | replace: '//', '/' }}">
...@@ -19,5 +27,4 @@ ...@@ -19,5 +27,4 @@
<!-- RSS --> <!-- RSS -->
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="ATOM Feed" /> <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="ATOM Feed" />
{% seo %}
</head> </head>
...@@ -31,33 +31,31 @@ ...@@ -31,33 +31,31 @@
</main> </main>
<!-- Pagination links --> <!-- Pagination links -->
{% if paginator.total_pages > 1 %} <div class="pagination">
<div class="pagination"> {% if paginator.total_pages > 1 %}
{% if paginator.previous_page == 1 %} <div class="page-numbers"><p>
<a href="{{ '/' | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&laquo;</a> {% if paginator.previous_page %}
{% elsif paginator.previous_page%} <a href="{{ paginator.previous_page_path}}" class="page-button prev">Prev</a>
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&laquo;</a> {% endif %}
{% else %}
<span class="page-item">&laquo;</span> {% for page in (1..paginator.total_pages) %}
{% endif %} {% assign total = paginator.total_pages %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %} {% if page == paginator.page %}
<span class="page-item">{{ page }}</span> {{ page }} of {{total}}
{% elsif page == 1 %}
<a href="{{ '/' | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}" class="page-item">{{ page }}</a> {% endif %}
{% endif %} {% endfor %}
{% endfor %}
{% if paginator.next_page %}
{% if paginator.next_page %} <a href="{{ paginator.next_page_path}}" class="page-button next">Next</a>
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&raquo;</a> {% endif %}
{% else %} </p></div>
<span class="page-item">&raquo;</span> {% endif %}
{% endif %} </div>
</div>
{% endif %}
</div> </div>
......
...@@ -32,33 +32,31 @@ ...@@ -32,33 +32,31 @@
</main> </main>
<!-- Pagination links --> <!-- Pagination links -->
{% if paginator.total_pages > 1 %} <div class="pagination">
<div class="pagination"> {% if paginator.total_pages > 1 %}
{% if paginator.previous_page == 1 %} <div class="page-numbers">
<a href="{{ '/' | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&laquo;</a> {% if paginator.previous_page %}
{% elsif paginator.previous_page%} <a href="{{ paginator.previous_page_path}}" class="page-item prev">«</a>
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&laquo;</a> {% endif %}
{% else %}
<span class="page-item">&laquo;</span> {% for page in (1..paginator.total_pages) %}
{% endif %} {% assign total = paginator.total_pages %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %} {% if page == paginator.page %}
<span class="page-item">{{ page }}</span> <p class="page-numbers-display">{{ page }} of {{total}}</p>
{% elsif page == 1 %}
<a href="{{ '/' | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">{{ page }}</a>
{% else %}
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}" class="page-item">{{ page }}</a> {% endif %}
{% endif %} {% endfor %}
{% endfor %}
{% if paginator.next_page %}
{% if paginator.next_page %} <a href="{{ paginator.next_page_path}}" class="page-item next">»</a>
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&raquo;</a> {% endif %}
{% else %} </div>
<span class="page-item">&raquo;</span> {% endif %}
{% endif %} </div>
</div>
{% endif %}
</div> </div>
......
--- ---
title: Issue 1&#58; March 22-29, 2019 title: Issue 1&#58; March 22-29, 2019
issuenumber: 1
--- ---
[<img src="/img/img-issue1.jpg" alt="Revuo Monero Weekly Issue 1 Image">]({% post_url 2019-03-27-issue-1 %}.html) [<img src="/img/img-issue1.jpg" alt="Revuo Monero Weekly Issue 1 Image">]({% post_url 2019-03-27-issue-1 %}.html)
......
--- ---
title: Issue 2&#58; March 29 - April 4, 2019 title: Issue 2&#58; March 29 - April 4, 2019
issuenumber: 2
--- ---
[<img src="/img/img-issue2.jpg" alt="Revuo Monero Weekly Issue 2 Image">]({% post_url 2019-04-04-issue-2 %}.html) [<img src="/img/img-issue2.jpg" alt="Revuo Monero Weekly Issue 2 Image">]({% post_url 2019-04-04-issue-2 %}.html)
......
--- ---
title: Issue 3&#58; April 4-11, 2019 title: Issue 3&#58; April 4-11, 2019
issuenumber: 3
--- ---
[<img src="/img/img-issue3.jpg" alt="Revuo Monero Weekly Issue 3 Image">]({% post_url 2019-04-11-issue-3 %}.html) [<img src="/img/img-issue3.jpg" alt="Revuo Monero Weekly Issue 3 Image">]({% post_url 2019-04-11-issue-3 %}.html)
......
--- ---
title: Issue 4&#58; April 11-18, 2019 title: Issue 4&#58; April 11-18, 2019
issuenumber: 4
--- ---
[<img src="/img/img-issue4.jpg" alt="Revuo Monero Weekly Issue 4 Image">]({% post_url 2019-04-17-issue-4 %}.html) [<img src="/img/img-issue4.jpg" alt="Revuo Monero Weekly Issue 4 Image">]({% post_url 2019-04-17-issue-4 %}.html)
......
--- ---
title: Issue 5&#58; April 18-25, 2019 title: Issue 5&#58; April 18-25, 2019
issuenumber: 5
--- ---
[<img src="/img/img-issue5.jpg" alt="Revuo Monero Weekly Issue 5 Image">]({% post_url 2019-04-25-issue-5 %}.html) [<img src="/img/img-issue5.jpg" alt="Revuo Monero Weekly Issue 5 Image">]({% post_url 2019-04-25-issue-5 %}.html)
......
--- ---
title: Issue 6&#58; April 26 - May 2, 2019 title: Issue 6&#58; April 26 - May 2, 2019
issuenumber: 6
--- ---
[<img src="/img/img-issue6.jpg" alt="Revuo Monero Weekly Issue 6 Image">]({% post_url 2019-05-02-issue-6 %}.html) [<img src="/img/img-issue6.jpg" alt="Revuo Monero Weekly Issue 6 Image">]({% post_url 2019-05-02-issue-6 %}.html)
......
--- ---
title: Issue 7&#58; May 2-9, 2019 title: Issue 7&#58; May 2-9, 2019
issuenumber: 7
--- ---
[<img src="/img/img-issue7.jpg" alt="Revuo Monero Weekly Issue 7 Image">]({% post_url 2019-05-09-issue-7 %}.html) [<img src="/img/img-issue7.jpg" alt="Revuo Monero Weekly Issue 7 Image">]({% post_url 2019-05-09-issue-7 %}.html)
......
--- ---
title: Issue 8&#58; May 9-16, 2019 title: Issue 8&#58; May 9-16, 2019
issuenumber: 8
--- ---
[<img src="/img/img-issue8.jpg" alt="Revuo Monero Weekly Issue 8 Image">]({% post_url 2019-05-16-issue-8 %}.html) [<img src="/img/img-issue8.jpg" alt="Revuo Monero Weekly Issue 8 Image">]({% post_url 2019-05-16-issue-8 %}.html)
......
--- ---
title: Issue 9&#58; May 16-23, 2019 title: Issue 9&#58; May 16-23, 2019
issuenumber: 9
--- ---
[<img src="/img/img-issue9.jpg" alt="Revuo Monero Weekly Issue 9 Image">]({% post_url 2019-05-23-issue-9 %}.html) [<img src="/img/img-issue9.jpg" alt="Revuo Monero Weekly Issue 9 Image">]({% post_url 2019-05-23-issue-9 %}.html)
......
--- ---
title: Issue 10&#58; May 23-30, 2019 title: Issue 10&#58; May 23-30, 2019
img: "/img/img-issue10.jpg" img: "/img/img-issue10.jpg"
issuenumber: 10
--- ---
[<img src="/img/img-issue10.jpg" alt="Revuo Monero Weekly Issue 10 Image">]({% post_url 2019-05-30-issue-10 %}.html) [<img src="/img/img-issue10.jpg" alt="Revuo Monero Weekly Issue 10 Image">]({% post_url 2019-05-30-issue-10 %}.html)
......
--- ---
title: Issue 11&#58; May 30 - June 6, 2019 title: Issue 11&#58; May 30 - June 6, 2019
img: "/img/img-issue11.jpg" img: "/img/img-issue11.jpg"
issuenumber: 11
--- ---
[<img src="/img/img-issue11.jpg" alt="Revuo Monero Weekly Issue 11 Image" class="img-lead">]({% post_url 2019-06-06-issue-11 %}.html) [<img src="/img/img-issue11.jpg" alt="Revuo Monero Weekly Issue 11 Image" class="img-lead">]({% post_url 2019-06-06-issue-11 %}.html)
......
--- ---
title: Issue 12&#58; June 6-13, 2019 title: Issue 12&#58; June 6-13, 2019
img: "/img/img-issue12.jpg" img: "/img/img-issue12.jpg"
issuenumber: 12
--- ---
[<img src="/img/img-issue12.jpg" alt="Revuo Monero Weekly #12 Slide" class="img-lead">]({% post_url 2019-06-13-issue-12 %}.html) [<img src="/img/img-issue12.jpg" alt="Revuo Monero Weekly #12 Slide" class="img-lead">]({% post_url 2019-06-13-issue-12 %}.html)
......
--- ---
title: Issue 13&#58; June 13-20, 2019 title: Issue 13&#58; June 13-20, 2019
image: /img/twitter-card-issue-13.jpg image: /img/twitter-card-issue-13.jpg
issuenumber: 13
--- ---
[<img src="/img/img-issue13.jpg" alt="Revuo Monero Weekly Issue 14 Image" class="img-lead">]({% post_url 2019-06-20-issue-13 %}.html) [<img src="/img/img-issue13.jpg" alt="Revuo Monero Weekly Issue 14 Image" class="img-lead">]({% post_url 2019-06-20-issue-13 %}.html)
......
--- ---
title: Issue 14&#58; June 20-27, 2019 title: Issue 14&#58; June 20-27, 2019
image: /img/twitter-card-issue-14.jpg image: /img/twitter-card-issue-14.jpg
issuenumber: 14
--- ---
[<img src="/img/img-issue14.jpg" alt="Revuo Monero Weekly #14 Slide" class="img-lead">]({% post_url 2019-06-27-issue-14 %}.html) [<img src="/img/img-issue14.jpg" alt="Revuo Monero Weekly #14 Slide" class="img-lead">]({% post_url 2019-06-27-issue-14 %}.html)
......
--- ---
title: Issue 15&#58; June 27 - July 4, 2019 title: Issue 15&#58; June 27 - July 4, 2019
image: /img/twitter-card-issue-15.jpg image: /img/twitter-card-issue-15.jpg
issuenumber: 15
--- ---
[<img src="/img/img-issue15.jpg" alt="Revuo Monero Weekly #15 Slide" class="img-lead">]({% post_url 2019-07-04-issue-15 %}.html) [<img src="/img/img-issue15.jpg" alt="Revuo Monero Weekly #15 Slide" class="img-lead">]({% post_url 2019-07-04-issue-15 %}.html)
......