Code cleaned up v1
This commit is contained in:
parent
aaaebfcccc
commit
91ba1bb533
11 changed files with 183 additions and 210 deletions
|
@ -1 +1,3 @@
|
|||
<footer class="footer"><span>2022 - Revuo Monero.</span></footer>
|
||||
<footer class="footer">
|
||||
<span>2022 - Revuo Monero.</span>
|
||||
</footer>
|
|
@ -3,19 +3,19 @@
|
|||
<a href="{{ site.baseurl }}">Revuo Weekly</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 %}
|
||||
{% 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 -->
|
||||
|
||||
<!-- Nav footer -->
|
||||
{% if site.custom_nav_footer == true %}
|
||||
{% include nav-footer-custom.html %}
|
||||
{% include nav-footer-custom.html %}
|
||||
{% else %}
|
||||
{% include nav-footer.html %}
|
||||
{% include nav-footer.html %}
|
||||
{% endif %}
|
||||
|
||||
</nav>
|
||||
|
|
|
@ -1,70 +1,63 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
|
||||
{% include head.html %}
|
||||
|
||||
<body>
|
||||
<div id="wrap">
|
||||
|
||||
<!-- 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>
|
||||
<!-- Navigation -->
|
||||
{% include menu.html %}
|
||||
|
||||
<!-- Pagination links -->
|
||||
<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 %}
|
||||
<!-- Icon menu -->
|
||||
<a {% if site.reverse == true %}id="nav-menu-left"{% else %}id="nav-menu"{% endif %}>
|
||||
<div id="menu"></div>
|
||||
</a>
|
||||
|
||||
{% for page in (1..paginator.total_pages) %}
|
||||
{% assign total = paginator.total_pages %}
|
||||
|
||||
|
||||
{% if page == paginator.page %}
|
||||
{{ page }} of {{total}}
|
||||
|
||||
|
||||
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<!-- Header -->
|
||||
{% if site.custom_header == true %}
|
||||
{% include header-custom.html %}
|
||||
{% else %}
|
||||
{% include header.html %}
|
||||
{% endif %}
|
||||
|
||||
{% if paginator.next_page %}
|
||||
<a href="{{ paginator.next_page_path}}" class="page-button next">Next</a>
|
||||
{% endif %}
|
||||
</p></div>
|
||||
{% endif %}
|
||||
</div>
|
||||
<!-- Main content -->
|
||||
<div id="container">
|
||||
<main>
|
||||
{{ content }}
|
||||
</main>
|
||||
|
||||
<!-- Pagination links -->
|
||||
<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 %}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
{% include footer.html %}
|
||||
{% if paginator.next_page %}
|
||||
<a href="{{ paginator.next_page_path}}" class="page-button next">Next</a>
|
||||
{% endif %}
|
||||
</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Script -->
|
||||
{% include script.html %}
|
||||
<!-- Footer -->
|
||||
{% include footer.html %}
|
||||
|
||||
</div>
|
||||
<!-- Script -->
|
||||
{% include script.html %}
|
||||
|
||||
</div><!-- div#wrap -->
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
|
@ -2,7 +2,5 @@
|
|||
layout: revuo-period
|
||||
---
|
||||
<article id="page">
|
||||
|
||||
{{ content }}
|
||||
|
||||
{{ content }}
|
||||
</article>
|
|
@ -5,9 +5,7 @@ layout: default
|
|||
<h2>{{ page.title }}</h2>
|
||||
<time datetime="{{ page.date | date_to_xmlschema }}" class="by-line">{{ page.date | date_to_string }}</time>
|
||||
<div class="content">
|
||||
|
||||
{{ content }}
|
||||
|
||||
</div>
|
||||
</article>
|
||||
|
||||
|
|
|
@ -1,73 +1,70 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
|
||||
{% include head.html %}
|
||||
|
||||
<body>
|
||||
<div id="wrap">
|
||||
<div id="periodical">
|
||||
|
||||
<!-- Navigation -->
|
||||
{% include menu.html %}
|
||||
<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>
|
||||
<!-- 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 %}
|
||||
<!-- Header -->
|
||||
{% if site.custom_header == true %}
|
||||
{% include header-custom.html %}
|
||||
{% else %}
|
||||
{% include header.html %}
|
||||
{% endif %}
|
||||
|
||||
<!-- Main content -->
|
||||
<div id="container">
|
||||
|
||||
<main>
|
||||
|
||||
{{ content }}
|
||||
|
||||
</main>
|
||||
<!-- 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">«</a>
|
||||
{% elsif paginator.previous_page%}
|
||||
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">«</a>
|
||||
{% else %}
|
||||
<span class="page-item">«</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">»</a>
|
||||
{% else %}
|
||||
<span class="page-item">»</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
<!-- Pagination links -->
|
||||
{% if paginator.total_pages > 1 %}
|
||||
<div class="pagination">
|
||||
{% if paginator.previous_page == 1 %}
|
||||
<a href="{{ '/' | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">«</a>
|
||||
{% elsif paginator.previous_page%}
|
||||
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="page-item">«</a>
|
||||
{% else %}
|
||||
<span class="page-item">«</span>
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
{% 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">»</a>
|
||||
{% else %}
|
||||
<span class="page-item">»</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
</div><!-- div#container -->
|
||||
|
||||
<!-- Footer -->
|
||||
{% include footer.html %}
|
||||
<!-- Footer -->
|
||||
{% include footer.html %}
|
||||
|
||||
<!-- Script -->
|
||||
{% include script.html %}
|
||||
</div>
|
||||
</div>
|
||||
<!-- Script -->
|
||||
{% include script.html %}
|
||||
</div><!-- div#periodical -->
|
||||
</div><!-- div#wrap -->
|
||||
</body>
|
||||
</html>
|
|
@ -1,71 +1,64 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
|
||||
{% 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>
|
||||
<div id="weekly">
|
||||
|
||||
<!-- Header -->
|
||||
{% if site.custom_header == true %}
|
||||
{% include header-custom.html %}
|
||||
{% else %}
|
||||
{% include header.html %}
|
||||
{% endif %}
|
||||
<!-- Navigation -->
|
||||
{% include menu.html %}
|
||||
|
||||
<!-- Main content -->
|
||||
<div id="container">
|
||||
|
||||
<main>
|
||||
<!-- Icon menu -->
|
||||
<a {% if site.reverse == true %}id="nav-menu-left"{% else %}id="nav-menu"{% endif %}>
|
||||
<div id="menu"></div>
|
||||
</a>
|
||||
|
||||
{{ content }}
|
||||
<!-- Header -->
|
||||
{% if site.custom_header == true %}
|
||||
{% include header-custom.html %}
|
||||
{% else %}
|
||||
{% include header.html %}
|
||||
{% endif %}
|
||||
|
||||
</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 %}
|
||||
<!-- Main content -->
|
||||
<div id="container">
|
||||
|
||||
{% 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 %}
|
||||
<main>
|
||||
{{ content }}
|
||||
</main>
|
||||
|
||||
{% if paginator.next_page %}
|
||||
<a href="{{ paginator.next_page_path}}" class="page-item next">»</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
<!-- 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 %}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Footer -->
|
||||
{% include footer.html %}
|
||||
{% 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 %}
|
||||
|
||||
<!-- Script -->
|
||||
{% include script.html %}
|
||||
</div>
|
||||
</div>
|
||||
{% if paginator.next_page %}
|
||||
<a href="{{ paginator.next_page_path}}" class="page-item next">»</a>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
</div><!-- div#container -->
|
||||
|
||||
<!-- Footer -->
|
||||
{% include footer.html %}
|
||||
|
||||
<!-- Script -->
|
||||
{% include script.html %}
|
||||
</div><!-- div#weekly -->
|
||||
</div><!-- div#wrap -->
|
||||
</body>
|
||||
</html>
|
|
@ -1,4 +0,0 @@
|
|||
---
|
||||
---
|
||||
@import "minima";
|
||||
|
|
@ -45,7 +45,7 @@
|
|||
--block-bg-color: #2f3234;
|
||||
--block-bg-color-secondary: #444444;
|
||||
--block-bg-color-heading: #333333;
|
||||
--table-color: #fff;
|
||||
--table-color: #ffffff;
|
||||
--head-nav-bg-color: transparent;
|
||||
--head-nav-text-color: #888888;
|
||||
}
|
||||
|
@ -81,16 +81,16 @@ h1 {
|
|||
a {
|
||||
color: var(--primary-color);
|
||||
}
|
||||
|
||||
.moneroversary-table,
|
||||
.price-table{
|
||||
.price-table {
|
||||
color: var(--table-color);
|
||||
}
|
||||
#weekly .revuo-classes a.wk {
|
||||
background-color: var(--head-nav-bg-color);
|
||||
color: var(--head-nav-text-color);
|
||||
}
|
||||
|
||||
#periodical .revuo-classes a.pd, #wrap.periodical .revuo-classes a.pd:active, #wrap.periodical .revuo-classes a.pd:focus {
|
||||
#weekly .revuo-classes a.wk,
|
||||
#periodical .revuo-classes a.pd,
|
||||
#wrap.periodical .revuo-classes a.pd:active,
|
||||
#wrap.periodical .revuo-classes a.pd:focus {
|
||||
background-color: var(--head-nav-bg-color);
|
||||
color: var(--head-nav-text-color);
|
||||
}
|
||||
|
|
20
index.html
20
index.html
|
@ -5,15 +5,11 @@ image: /img/revuo-monero.png
|
|||
---
|
||||
<!-- Posts -->
|
||||
<ul id="posts">
|
||||
|
||||
{% for post in paginator.posts %}
|
||||
|
||||
<li class="post">
|
||||
<h2><a href="{% if site.baseurl == "/" %}{{ post.url }}{% else %}{{ post.url | prepend: site.baseurl }}{% endif %}.html">{{ post.title }}</a></h2>
|
||||
<time datetime="{{ post.date | date_to_xmlschema }}" class="by-line">{{ post.date | date_to_string }}</time>
|
||||
<p>{{ post.excerpt }}</p>
|
||||
</li>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
</ul>
|
||||
{% for post in paginator.posts %}
|
||||
<li class="post">
|
||||
<h2><a href="{% if site.baseurl == "/" %}{{ post.url }}{% else %}{{ post.url | prepend: site.baseurl }}{% endif %}.html">{{ post.title }}</a></h2>
|
||||
<time datetime="{{ post.date | date_to_xmlschema }}" class="by-line">{{ post.date | date_to_string }}</time>
|
||||
<p>{{ post.excerpt }}</p>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
|
@ -19,10 +19,10 @@ function switchTheme(e) {
|
|||
if (e.target.checked) {
|
||||
document.documentElement.setAttribute('data-theme', 'dark');
|
||||
localStorage.setItem('theme', 'dark');
|
||||
} else {
|
||||
document.documentElement.setAttribute('data-theme', 'light');
|
||||
localStorage.setItem('theme', 'light');
|
||||
}
|
||||
else { document.documentElement.setAttribute('data-theme', 'light');
|
||||
localStorage.setItem('theme', 'light');
|
||||
}
|
||||
}
|
||||
|
||||
toggleSwitch.addEventListener('change', switchTheme, false);
|
||||
|
|
Loading…
Reference in a new issue