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 (221)
Showing
with 217 additions and 48 deletions
.sass-cache
.DS_Store
_site
.jekyll-cache
\ No newline at end of file
......@@ -9,7 +9,7 @@ markdown: kramdown
source: .
destination: ./_site
permalink: /:title
paginate: 4
paginate: 6
paginate_path: /page:num/
# Default values
......@@ -22,7 +22,7 @@ defaults:
layout: "post"
# Plugins
gems:
plugins:
- jekyll-paginate
- jekyll-feed
......@@ -34,3 +34,6 @@ excerpt_separator: <!--more-->
custom_header: false
custom_nav_footer: false
reverse: false
twitter:
username: monero
\ No newline at end of file
<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,25 +3,23 @@
<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">
<meta name=”twitter:card” content=”summary_large_image”>
<meta property="og:title" content="{{page.title}}"/>
<meta property="og:description" content="Revuo Monero is a weekly newsletter where you can find find the most recent Monero news.">
<meta property="og:image" content="{{page.img}}">
<meta property="og:site_name" content="revuo-monero.com, Revuo Monero">
<meta property="og:url" content="https://revuo-monero.com">
<meta property="og:type" content="website">
<link rel="icon" type="image/png" sizes="32x32" href="/img/revuo-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="16x16" href="/img/favicon-16x16.png">
<meta property="twitter:description" content="Revuo Monero is a weekly newsletter where you can find find the most recent Monero news.">
<meta name=”twitter:title” content="{{page.title}}">
<meta name=”twitter:image” content="{{page.img}}">
{% 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: '//', '/' }}">
......@@ -29,5 +27,4 @@
<!-- RSS -->
<link href="/atom.xml" type="application/atom+xml" rel="alternate" title="ATOM Feed" />
</head>
<header id="header">
<a href="{{ site.baseurl }}">
<img src="{{ "/img/revuo-monero-logo.png" | prepend: site.baseurl | replace: '//', '/' }}" alt="Revuo Monero Logo"-->
</a>
<div>
<a href="{{ site.baseurl }}">
<img src="{{ "/img/revuo-monero-logo.png" | prepend: site.baseurl | replace: '//', '/' }}" alt="Revuo Monero Logo"-->
</a>
</div>
<div class="revuo-classes">
<a href="{{ site.baseurl }}" class="wk">Weekly</a>
<a href="/periodicals/" class="pd">Periodical</a>
</div>
</header>
<nav {% if site.reverse == true %}id="nav-left"{% else %}id="nav"{% endif %}>
<div id="nav-list">
<a href="{{ site.baseurl }}">Home</a>
<a href="{{ site.baseurl }}">Revuo Weekly</a>
<!-- Nav pages -->
{% for page in site.pages %}
......
......@@ -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>
......
---
layout: default
layout: revuo-period
---
<article id="page">
......
---
layout: default
---
<article id="post-page">
<h2>{{ page.title }}</h2>
<div class="content">
{{ content }}
</div>
</article>
\ No newline at end of file
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
<div id="wrap">
<div id="periodical">
<!-- Navigation -->
{% include menu.html %}
<!-- Icon menu -->
<a {% if site.reverse == true %}id="nav-menu-left"{% else %}id="nav-menu"{% endif %}>
<div id="menu"></div>
</a>
<!-- Header -->
{% if site.custom_header == true %}
{% include header-custom.html %}
{% else %}
{% include header.html %}
{% endif %}
<!-- Main content -->
<div id="container">
<main>
{{ content }}
</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>
<!-- Footer -->
{% include footer.html %}
<!-- Script -->
{% include script.html %}
</div>
</div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
<div id="wrap">
<div id="weekly">
<!-- Navigation -->
{% include menu.html %}
<!-- Icon menu -->
<a {% if site.reverse == true %}id="nav-menu-left"{% else %}id="nav-menu"{% endif %}>
<div id="menu"></div>
</a>
<!-- Header -->
{% if site.custom_header == true %}
{% include header-custom.html %}
{% else %}
{% include header.html %}
{% endif %}
<!-- Main content -->
<div id="container">
<main>
{{ content }}
</main>
<!-- Pagination links -->
<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>
<!-- Footer -->
{% include footer.html %}
<!-- Script -->
{% include script.html %}
</div>
</div>
</body>
</html>
\ No newline at end of file
---
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)
......