update zola version with feed settings
This commit is contained in:
parent
d1945ae148
commit
9f79959f03
|
@ -3,7 +3,7 @@ title = "Light Speed"
|
||||||
description = "Zola theme with a perfect Lighthouse score"
|
description = "Zola theme with a perfect Lighthouse score"
|
||||||
|
|
||||||
compile_sass = true
|
compile_sass = true
|
||||||
generate_rss = true
|
generate_feed = true
|
||||||
|
|
||||||
highlight_code = true
|
highlight_code = true
|
||||||
highlight_theme = "gruvbox-light"
|
highlight_theme = "gruvbox-light"
|
||||||
|
@ -15,7 +15,7 @@ netlify = true
|
||||||
|
|
||||||
footer_links = [
|
footer_links = [
|
||||||
{url = "$BASE_URL/about", name = "About"},
|
{url = "$BASE_URL/about", name = "About"},
|
||||||
{url = "$BASE_URL/rss.xml", name = "RSS"},
|
{url = "$BASE_URL/atom.xml", name = "RSS"},
|
||||||
{url = "https://github.com/carpetscheme/lightspeed", name = "Source on Github"},
|
{url = "https://github.com/carpetscheme/lightspeed", name = "Source on Github"},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -114,9 +114,9 @@ Right aligned columns
|
||||||
|
|
||||||
## Links
|
## Links
|
||||||
|
|
||||||
[link text](http://dev.nodeca.com)
|
[link text](http://github.com)
|
||||||
|
|
||||||
[link with title](http://nodeca.github.io/pica/demo/ "title text!")
|
[link with title](http://github.com "title text!")
|
||||||
|
|
||||||
|
|
||||||
## Images
|
## Images
|
||||||
|
|
|
@ -3,5 +3,5 @@ publish = "public"
|
||||||
command = "zola build"
|
command = "zola build"
|
||||||
|
|
||||||
[build.environment]
|
[build.environment]
|
||||||
ZOLA_VERSION = "0.10.1"
|
ZOLA_VERSION = "0.11.0"
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<meta name="description" content="{% block description %}{{ config.description }}{% endblock description %}" />
|
<meta name="description" content="{% block description %}{{ config.description }}{% endblock description %}" />
|
||||||
{% if config.extra.author %}<meta name="author" content="{{ config.extra.author }}" />{% endif %}
|
{% if config.extra.author %}<meta name="author" content="{{ config.extra.author }}" />{% endif %}
|
||||||
<link rel="shortcut icon" href="{{ get_url(path="favicon.ico") | safe }}" />
|
<link rel="shortcut icon" href="{{ get_url(path="favicon.ico") | safe }}" />
|
||||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml") | safe }}">
|
<link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path="atom.xml") | safe }}">
|
||||||
|
|
||||||
{% set data = load_data(path="public/style.css", format="plain") -%}
|
{% set data = load_data(path="public/style.css", format="plain") -%}
|
||||||
<style>{{ data | safe }}</style>
|
<style>{{ data | safe }}</style>
|
||||||
|
|
Loading…
Reference in a new issue