summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/404.html2
-rw-r--r--templates/index.html10
-rw-r--r--templates/macros.html6
-rw-r--r--templates/page.html6
-rw-r--r--templates/section.html6
-rw-r--r--templates/shortcodes/youtube.html2
-rw-r--r--templates/tags/list.html6
-rw-r--r--templates/tags/single.html6
8 files changed, 22 insertions, 22 deletions
diff --git a/templates/404.html b/templates/404.html
index 94a6247..c565d09 100644
--- a/templates/404.html
+++ b/templates/404.html
@@ -5,7 +5,7 @@
{% block title %} {% endblock title %}
{% block main %}
-<div id="spotlight" class="error-404 animated fadeIn">
+<div id="spotlight" class="error-404">
<p class="img-404">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 167.8 163.4" fill="currentColor">
diff --git a/templates/index.html b/templates/index.html
index 9144fc0..746f8ab 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -67,8 +67,8 @@
<title>{{ config.title }}</title>
{% endif %}
- {% if config.generate_feed %}
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path=config.feed_filename, trailing_slash=false) }}">
+ {% if config.generate_feeds %}
+ <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path=config.feed_filenames[0], trailing_slash=false) }}">
{% endif %}
<body id="page">
@@ -77,7 +77,7 @@
{% endblock header %}
{% block title %}
- <div id="spotlight" class="animated fadeIn">
+ <div id="spotlight" class="">
<div id="home-center">
<h1 id="home-title">{{ config.title }}</h1>
<p id="home-subtitle">{{ config.extra.home_subtitle }}</p>
@@ -100,9 +100,9 @@
<p>&copy; {{ now() | date(format="%Y") }}
<a href="{{ config.base_url }}">{{ config.extra.author.name }}</a>
- {% if config.generate_feed %}
+ {% if config.generate_feeds %}
&#183;
- <a href="{{ get_url(path=config.feed_filename, trailing_slash=false) }}" target="_blank" title="rss">
+ <a href="{{ get_url(path=config.feed_filenames[0], trailing_slash=false) }}" target="_blank" title="rss">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="feather feather-rss">
diff --git a/templates/macros.html b/templates/macros.html
index 1f5488f..58b1ad2 100644
--- a/templates/macros.html
+++ b/templates/macros.html
@@ -9,15 +9,15 @@
{% endmacro read_time %}
{% macro footer() %}
-<footer id="site-footer" class="section-inner thin animated fadeIn faster">
+<footer id="site-footer" class="section-inner thin">
<p>
&copy; {{ now() | date(format="%Y") }}
<a href="{{ config.base_url }}">{{ config.extra.author.name }}</a>
{{ config.extra.footer_copyright | safe }}
</p>
<p>Made with <a href="https://www.getzola.org" target="_blank" rel="noopener">Zola</a> &#183; Theme : <a href="https://github.com/VersBinarii/hermit_zola" target="_blank" rel="noopener">Hermit_Zola</a>
- {% if config.generate_feed %}
- &#183; <a href="{{ get_url(path=config.feed_filename, trailing_slash=false) }}" target="_blank" title="rss"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg></a>
+ {% if config.generate_feeds %}
+ &#183; <a href="{{ get_url(path=config.feed_filenames[0], trailing_slash=false) }}" target="_blank" title="rss"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg></a>
{% endif %}
</p>
</footer>
diff --git a/templates/page.html b/templates/page.html
index 67bdddb..176dc7b 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -3,7 +3,7 @@
{% import "macros.html" as macros %}
{% block header %}
-<header id="site-header" class="animated slideInUp faster">
+<header id="site-header" class="">
<div class="hdr-wrapper section-inner">
<div class="hdr-left">
<div class="site-branding">
@@ -32,7 +32,7 @@
</div>
</header>
-<div id="mobile-menu" class="animated fast">
+<div id="mobile-menu" class="">
<ul>
{% for menu_item in config.extra.hermit_menu %}
<li>
@@ -46,7 +46,7 @@
{% block title %} {% endblock title %}
{% block main %}
-<main class="site-main section-inner animated fadeIn faster">
+<main class="site-main section-inner">
<article class="thin">
<header class="post-header">
<div class="post-meta">
diff --git a/templates/section.html b/templates/section.html
index 679a3ea..48b1c04 100644
--- a/templates/section.html
+++ b/templates/section.html
@@ -3,7 +3,7 @@
{% import "macros.html" as macros %}
{% block header %}
-<header id="site-header" class="animated slideInUp faster">
+<header id="site-header" class="">
<div class="hdr-wrapper section-inner">
<div class="hdr-left">
<div class="site-branding">
@@ -32,7 +32,7 @@
</div>
</header>
-<div id="mobile-menu" class="animated fast">
+<div id="mobile-menu" class="">
<ul>
{% for menu_item in config.extra.hermit_menu %}
<li>
@@ -46,7 +46,7 @@
{% block title %} {% endblock title %}
{% block main %}
-<main class="site-main section-inner thin animated fadeIn faster">
+<main class="site-main section-inner thin">
<h1>{{ section.title }}</h1>
{% for year, pages in section.pages | group_by(attribute="year") %}
<div class="posts-group">
diff --git a/templates/shortcodes/youtube.html b/templates/shortcodes/youtube.html
index 87ccffe..3469885 100644
--- a/templates/shortcodes/youtube.html
+++ b/templates/shortcodes/youtube.html
@@ -1,5 +1,5 @@
<div {% if class %}class="{{class}}"{% endif %} style="position: relative; width: 100%; padding-bottom: 56.25%; /* 16:9 aspect ratio for responsive sizing */ overflow: hidden;">
- <iframe style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;
+ <iframe title="YouTube Video Frame" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;
border-radius: 4px; /* Optional: Add some rounded corners */
border-style: none; /* Remove iframe border */"
src="https://www.youtube-nocookie.com/embed/{{id}}{% if autoplay %}?autoplay=1{% endif %}" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen>
diff --git a/templates/tags/list.html b/templates/tags/list.html
index c3268c3..cb45c5c 100644
--- a/templates/tags/list.html
+++ b/templates/tags/list.html
@@ -3,7 +3,7 @@
{% import "macros.html" as macros %}
{% block header %}
-<header id="site-header" class="animated slideInUp faster">
+<header id="site-header" class="">
<div class="hdr-wrapper section-inner">
<div class="hdr-left">
<div class="site-branding">
@@ -32,7 +32,7 @@
</div>
</header>
-<div id="mobile-menu" class="animated fast">
+<div id="mobile-menu" class="">
<ul>
{% for menu_item in config.extra.hermit_menu %}
<li><a href="{{ menu_item.link }}">{{ menu_item.name }}</a></li>
@@ -44,7 +44,7 @@
{% block title %} {% endblock title %}
{% block main %}
-<main class="site-main section-inner thin animated fadeIn faster" style="text-align: center;">
+<main class="site-main section-inner thin" style="text-align: center;">
{% block content %}
{% for tag in terms %}
diff --git a/templates/tags/single.html b/templates/tags/single.html
index f1d506a..08a699b 100644
--- a/templates/tags/single.html
+++ b/templates/tags/single.html
@@ -3,7 +3,7 @@
{% import "macros.html" as macros %}
{% block header %}
-<header id="site-header" class="animated slideInUp faster">
+<header id="site-header" class="">
<div class="hdr-wrapper section-inner">
<div class="hdr-left">
<div class="site-branding">
@@ -31,7 +31,7 @@
</div>
</div>
</header>
-<div id="mobile-menu" class="animated fast">
+<div id="mobile-menu" class="">
<ul>
{% for menu_item in config.extra.hermit_menu %}
<li><a href="{{ menu_item.link }}">{{ menu_item.name }}</a></li>
@@ -43,7 +43,7 @@
{% block title %} {% endblock title %}
{% block main %}
-<main class="site-main section-inner thin animated fadeIn faster">
+<main class="site-main section-inner thin">
<h1>{{ term.name }}</h1>
{% for year, pages in term.pages | group_by(attribute="year") %}
<div class="posts-group">