diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 11 | ||||
-rw-r--r-- | templates/donate.html | 24 | ||||
-rw-r--r-- | templates/index.html | 31 |
3 files changed, 38 insertions, 28 deletions
diff --git a/templates/base.html b/templates/base.html index d28c0c8..9cad805 100644 --- a/templates/base.html +++ b/templates/base.html @@ -137,6 +137,17 @@ </div> </div> {% endblock %} + <div class="foot-container"> + <p> + The text content in this site is + <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>, + the photos are under + <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>. + </p> + <p> + © 2018—2022 Yaroslav de la Peña Smirnov. + </p> + </div> </div> </body> </html> diff --git a/templates/donate.html b/templates/donate.html index 18cab1d..e21fc94 100644 --- a/templates/donate.html +++ b/templates/donate.html @@ -29,25 +29,25 @@ a tip. {% endif %} </p> - <h2>Paypal</h2> - <img class="cryptoqr" src="{{ get_url(path="img/paypal.png") }}"> - <br> - <a href="https://paypal.me/yaroslavps">https://paypal.me/yaroslavps</a> + <!-- <h2>Paypal</h2> --> + <!-- <img class="cryptoqr" src="{{ get_url(path="img/paypal.png") }}"> --> + <!-- <br> --> + <!-- <a href="https://paypal.me/yaroslavps">https://paypal.me/yaroslavps</a> --> <h2> <span class="icon"> - <img src="{{ get_url(path="svg/icons/btc.svg") }}"/> + <img src="{{ get_url(path="svg/icons/xmr.svg") }}"/> </span> - Bitcoin + Monero </h2> - <img class="cryptoqr" src="{{ get_url(path="img/btc.png") }}"> - <pre>bc1q9dxegghrk4qlc9k8m5wrsy7ca7edcqha5k0hyq</pre> + <img class="cryptoqr" src="{{ get_url(path="img/xmr.png") }}"> + <pre class="literal">48PaKg36GV2XzSVdbij8vviUfWhqAGVJGVCw6Qp9cjXrXiETyyhrJKiBFvhVodTr1qKfaANByoaCfNBZ3FdLrZQhBTBNMYV</pre> <h2> <span class="icon"> - <img src="{{ get_url(path="svg/icons/xmr.svg") }}"/> + <img src="{{ get_url(path="svg/icons/btc.svg") }}"/> </span> - Monero + Bitcoin </h2> - <img class="cryptoqr" src="{{ get_url(path="img/xmr.png") }}"> - <pre>48PaKg36GV2XzSVdbij8vviUfWhqAGVJGVCw6Qp9cjXrXiETyyhrJKiBFvhVodTr1qKfaANByoaCfNBZ3FdLrZQhBTBNMYV</pre> + <img class="cryptoqr" src="{{ get_url(path="img/btc.png") }}"> + <pre class="literal">bc1q9dxegghrk4qlc9k8m5wrsy7ca7edcqha5k0hyq</pre> </div> {% endblock %} diff --git a/templates/index.html b/templates/index.html index e0192fa..1562dde 100644 --- a/templates/index.html +++ b/templates/index.html @@ -22,7 +22,6 @@ <a href="/es/">🇲🇽 Español</a> {% endif %} </div> - {% if lang == "ru" %} <p> Добро пожаловать в мой уголок интернета. Меня зовут Ярослав. Я занимаюсь @@ -59,7 +58,11 @@ </p> {% endif %} - <h2>{{ trans(key="weblog", lang=lang) }}</h2> + <h2> + <a href="{{ weblog.permalink }}"> + {{ trans(key="weblog", lang=lang) }} + </a> + </h2> {% set latest_weblog = weblog.pages[0] %} <p> {% if lang == "en" %} @@ -89,7 +92,11 @@ <a href="{{ weblog.permalink }}feed.xml"><span class="icon"><img alt="rss-icon" src="/svg/icons/rss.svg"/></span> RSS</a> </div> - <h2>{{ trans(key="recipes", lang=lang) }}</h2> + <h2> + <a href="{{ recipes.permalink }}"> + {{ trans(key="recipes", lang=lang) }} + </a> + </h2> {% set latest_recipe = recipes.pages[0] %} <p> {% if lang == "en" %} @@ -117,7 +124,11 @@ <a href="{{ recipes.permalink }}feed.xml"><span class="icon"><img alt="rss-icon" src="/svg/icons/rss.svg"/></span> RSS</a> </div> - <h2>{{ trans(key="photos", lang=lang) }}</h2> + <h2> + <a href="/photos"> + {{ trans(key="photos", lang=lang) }} + </a> + </h2> <p> {% if lang == "en" %} A gallery with some photographs I've taken on my free time. @@ -207,17 +218,5 @@ <a href="https://github.com/Yaroslav-95" title="GitHub"><span class="icon"><img alt="github-icon" src="/svg/icons/github.svg"/></span> Github</a> <a href="https://sr.ht/~yaroslav/" title="sourcehut"><span class="icon"><img alt="srht-icon" src="/svg/icons/srht.svg"/></span> sourcehut</a> </div> - <hr> - <div class="nav-container"> - <p> - The text content in this site is - <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>, - the photos are under - <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>. - </p> - <p> - © 2018—2022 Yaroslav de la Peña Smirnov. - </p> - </div> </div> {% endblock %} |