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 (158)
Showing
with 77 additions and 60 deletions
......@@ -9,7 +9,7 @@ markdown: kramdown
source: .
destination: ./_site
permalink: /:title
paginate: 4
paginate: 6
paginate_path: /page:num/
# Default values
......@@ -25,7 +25,6 @@ defaults:
plugins:
- jekyll-paginate
- jekyll-feed
- jekyll-seo-tag
# Custom variables
version: "1.1.0"
......
<footer class="footer"><span>2019 - Revuo Monero</span></footer>
\ No newline at end of file
<footer class="footer"><span>2021 - Revuo Monero</span></footer>
\ No newline at end of file
......@@ -3,7 +3,6 @@
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta name="generator" content="Jekyll">
<link rel="canonical" href="https://localmonero.co/revuo" />
<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">
......@@ -11,7 +10,16 @@
<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="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 -->
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl | replace: '//', '/' }}">
......@@ -19,5 +27,4 @@
<!-- RSS -->
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="ATOM Feed" />
{% seo %}
</head>
......@@ -31,33 +31,31 @@
</main>
<!-- Pagination links -->
{% if paginator.total_pages > 1 %}
<div class="pagination">
{% if paginator.previous_page == 1 %}
<a href="{{ '/' | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&laquo;</a>
{% elsif paginator.previous_page%}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&laquo;</a>
{% else %}
<span class="page-item">&laquo;</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<span class="page-item">{{ page }}</span>
{% 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 %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&raquo;</a>
{% else %}
<span class="page-item">&raquo;</span>
{% endif %}
</div>
{% endif %}
<div class="pagination">
{% if paginator.total_pages > 1 %}
<div class="page-numbers"><p>
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path}}" class="page-button prev">Prev</a>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% assign total = paginator.total_pages %}
{% if page == paginator.page %}
{{ page }} of {{total}}
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path}}" class="page-button next">Next</a>
{% endif %}
</p></div>
{% endif %}
</div>
</div>
......
......@@ -32,33 +32,31 @@
</main>
<!-- Pagination links -->
{% if paginator.total_pages > 1 %}
<div class="pagination">
{% if paginator.previous_page == 1 %}
<a href="{{ '/' | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&laquo;</a>
{% elsif paginator.previous_page%}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&laquo;</a>
{% else %}
<span class="page-item">&laquo;</span>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<span class="page-item">{{ page }}</span>
{% 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 %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">&raquo;</a>
{% else %}
<span class="page-item">&raquo;</span>
{% endif %}
</div>
{% endif %}
<div class="pagination">
{% if paginator.total_pages > 1 %}
<div class="page-numbers">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path}}" class="page-item prev">«</a>
{% endif %}
{% for page in (1..paginator.total_pages) %}
{% assign total = paginator.total_pages %}
{% if page == paginator.page %}
<p class="page-numbers-display">{{ page }} of {{total}}</p>
{% endif %}
{% endfor %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path}}" class="page-item next">»</a>
{% endif %}
</div>
{% endif %}
</div>
</div>
......
---
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)
......
---
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)
......
---
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)
......
---
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)
......
---
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)
......
---
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)
......
---
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)
......
---
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)
......
---
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)
......
---
title: Issue 10&#58; May 23-30, 2019
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)
......
---
title: Issue 11&#58; May 30 - June 6, 2019
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)
......
---
title: Issue 12&#58; June 6-13, 2019
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)
......
---
title: Issue 13&#58; June 13-20, 2019
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)
......
---
title: Issue 14&#58; June 20-27, 2019
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)
......
---
title: Issue 15&#58; June 27 - July 4, 2019
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)
......