Compare commits

..

No commits in common. "a1b6e4614f68999e325404e670cb7a67de2824a9" and "6c76523b856674f4854118b1f4bc62248f7ceccd" have entirely different histories.

4 changed files with 4 additions and 3 deletions

View file

@ -3,7 +3,7 @@ title = "anemone"
description = "A minimalist Zola theme that prioritizes clean CSS and avoids heavy JavaScript. Enjoy a seamless user experience with lightning-fast load times. Let your content take center stage in a clutter-free, elegant design that enhances readability. Responsive and efficient, anemone brings focus to your ideas." description = "A minimalist Zola theme that prioritizes clean CSS and avoids heavy JavaScript. Enjoy a seamless user experience with lightning-fast load times. Let your content take center stage in a clutter-free, elegant design that enhances readability. Responsive and efficient, anemone brings focus to your ideas."
compile_sass = false compile_sass = false
minify_html = true minify_html = true
generate_feeds = true generate_feed = true
default_language = "en" default_language = "en"
taxonomies = [ taxonomies = [

View file

@ -1,5 +1,6 @@
+++ +++
paginate_by = 15 paginate_by = 15
path = "blog"
title = "All blog posts" title = "All blog posts"
sort_by = "date" sort_by = "date"
page_template = "blog-page.html" page_template = "blog-page.html"

View file

@ -15,7 +15,7 @@
</p> </p>
</div> </div>
{% if config.generate_feeds %} {% if config.generate_feed %}
<div> <div>
<a class="no-style" target="_blank" rel="noopener noreferrer" href="{{ get_url(path="atom.xml", trailing_slash=false) }}" title="Subscribe via RSS for updates."><svg class="icons"><use href="{{ get_url(path='icons.svg#rss', trailing_slash=false) | safe }}"></use></svg></a> <a class="no-style" target="_blank" rel="noopener noreferrer" href="{{ get_url(path="atom.xml", trailing_slash=false) }}" title="Subscribe via RSS for updates."><svg class="icons"><use href="{{ get_url(path='icons.svg#rss', trailing_slash=false) | safe }}"></use></svg></a>
</div> </div>

View file

@ -84,7 +84,7 @@
<link rel="shortcut icon" type="image/x-icon" href="{{ get_url(path=config.extra.favicon, trailing_slash=false) }}"> <link rel="shortcut icon" type="image/x-icon" href="{{ get_url(path=config.extra.favicon, trailing_slash=false) }}">
{% endif %} {% endif %}
{% endblock metatags %} {% endblock metatags %}
{% if config.generate_feeds %} {% if config.generate_feed %}
{% block feed %} {% block feed %}
<link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path="atom.xml", trailing_slash=false) }}"> <link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path="atom.xml", trailing_slash=false) }}">
{% endblock feed %} {% endblock feed %}