aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorYaroslav <contact@yaroslavps.com>2020-06-13 18:17:58 +0300
committerYaroslav <contact@yaroslavps.com>2020-06-13 18:17:58 +0300
commit818b22078c9e106594fe5c0fbcdd4fb7248e15a6 (patch)
tree7082f7d217cc878d38ab08271ab139ce431d09e7 /templates
parent8066b03372131ac206cafc4fe5735ebdf88cf31e (diff)
downloadyaroslavps.com-818b22078c9e106594fe5c0fbcdd4fb7248e15a6.tar.gz
yaroslavps.com-818b22078c9e106594fe5c0fbcdd4fb7248e15a6.zip
Added links to recipes, recipe archive, smol template changes
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html14
-rw-r--r--templates/food_archive.html20
-rw-r--r--templates/index.html2
-rw-r--r--templates/weblog.html38
-rw-r--r--templates/weblog_archive.html (renamed from templates/archive.html)0
5 files changed, 57 insertions, 17 deletions
diff --git a/templates/base.html b/templates/base.html
index ccb167a..2974335 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -28,9 +28,11 @@
</div>
<div class="sidebar-container">
<div class="sticky-wrapper">
+ {% block sbdesc %}
<p>Hello, my name is Yaroslav de la Peña Smirnov, welcome to my
weblog. Sometimes I write software, sometimes I might write my mind
here. </p>
+ {% endblock %}
<div class="links-container">
<a href="https://github.com/Yaroslav-95" title="GitHub"><span class="icon"></span></a>
<a href="https://git.yaroslavps.com/yaroslav" title="Git server"><span class="icon"></span></a>
@@ -39,8 +41,16 @@
<h3>Navigation</h3>
<ul class="navigation-list">
<li><a href="/">Landing page</a></li>
- <li><a href="/weblog/">Weblog ~</a></li>
- <li><a href="/weblog/archive">Weblog archive</a></li>
+ <li><a href="/weblog/">Weblog</a>
+ <ul>
+ <li><a href="/weblog/archive/">Archive</a></li>
+ </ul>
+ </li>
+ <li><a href="/food/">Recipe book</a>
+ <ul>
+ <li><a href="/food/archive/">Archive</a></li>
+ </ul>
+ </li>
</ul>
<h3>Contact</h3>
<p>If you want to tell me something, you can contact me by email at:</p>
diff --git a/templates/food_archive.html b/templates/food_archive.html
new file mode 100644
index 0000000..bd709e2
--- /dev/null
+++ b/templates/food_archive.html
@@ -0,0 +1,20 @@
+{% extends "base.html" %}
+{% block title %}
+Recipe archive - Yaroslav's recipe book
+{% endblock %}
+{% block header %}
+<h1>Yaroslav's recipe archive</h1>
+{% endblock %}
+{% block content %}
+{% set section = get_section(path="food/_index.md") %}
+<div class="post-container">
+ {% for year, posts in section.pages | group_by(attribute="year") %}
+ <h3>{{ year }}</h3>
+ <ul>
+ {% for post in posts %}
+ <li><span class="publish-date">{{ post.date | date }}</span> - <a href="{{ post.permalink }}">{{ post.title }}</a></li>
+ {% endfor %}
+ </ul>
+ {% endfor %}
+</div>
+{% endblock %}
diff --git a/templates/index.html b/templates/index.html
index c96bf15..51329cd 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -4,7 +4,7 @@
<h1>Yaroslav de la Peña Smirnov</h1>
<div class="links-container">
<a href="/weblog">Weblog</a>
- <a href="/weblog/archive">Weblog archive</a>
+ <a href="/food">Recipe book</a>
</div>
<div class="links-container">
<a href="https://github.com/Yaroslav-95" title="GitHub"><span class="icon"></span></a>
diff --git a/templates/weblog.html b/templates/weblog.html
index d3d6407..8b2eec6 100644
--- a/templates/weblog.html
+++ b/templates/weblog.html
@@ -1,21 +1,31 @@
{% extends "base.html" %}
{% block title %}
-{% if section.permalink is containing("weblog") %}
-A weblog by Yaroslav de la Peña Smirnov
-{% elif section.permalink is containing("food") %}
-A collection of recipes by Yaroslav de la Peña Smirnov
-{% else %}
-A website by Yaroslav de la Peña Smirnov
-{% endif %}
+ {% if section.permalink is containing("weblog") %}
+ A weblog by Yaroslav de la Peña Smirnov
+ {% elif section.permalink is containing("food") %}
+ A collection of recipes by Yaroslav de la Peña Smirnov
+ {% else %}
+ A website by Yaroslav de la Peña Smirnov
+ {% endif %}
{% endblock %}
{% block header %}
-{% if section.permalink is containing("weblog") %}
-<h1>Yaroslav's weblog</h1>
-{% elif section.permalink is containing("food") %}
-<h1>Yaroslav's recipe book</h1>
-{% else %}
-<h1>Yaroslav's website</h1>
-{% endif %}
+ {% if section.permalink is containing("weblog") %}
+ <h1>Yaroslav's weblog</h1>
+ {% elif section.permalink is containing("food") %}
+ <h1>Yaroslav's recipe book</h1>
+ {% else %}
+ <h1>Yaroslav's website</h1>
+ {% endif %}
+{% endblock %}
+{% block sbdesc %}
+ {% if section.permalink is containing("weblog") %}
+ <p>Hello, my name is Yaroslav de la Peña Smirnov, welcome to my weblog.
+ Sometimes I write software, sometimes I might write my mind here. </p>
+ {% elif section.permalink is containing("food") %}
+ <p>Here I keep some of the recipes for food that I cook. Nothing really
+ special in here, just food that I find delicious, and generally not very
+ expensive nor time consuming to cook.</p>
+ {% endif %}
{% endblock %}
{% block content %}
<div class="posts-list">
diff --git a/templates/archive.html b/templates/weblog_archive.html
index b06bdb2..b06bdb2 100644
--- a/templates/archive.html
+++ b/templates/weblog_archive.html