Browse Source

Update theme to gutenberg 0.4

master
Vincent Prouillet 6 years ago
parent
commit
4ee866c3a8
  1. 6
      config.toml
  2. 4
      content/some-article.md
  3. 2
      content/some-other-article.md
  4. 6
      templates/categories/list.html
  5. 4
      templates/categories/single.html
  6. 17
      templates/page.html
  7. 6
      templates/tags/list.html
  8. 4
      templates/tags/single.html
  9. 2
      theme.toml

6
config.toml

@ -3,8 +3,10 @@ compile_sass = true
title = "after-dark theme"
description = ""
generate_tags_pages = true
generate_categories_pages = true
taxonomies = [
{name = "categories", rss = true},
{name = "tags", rss = true},
]
[extra]
author = "Vincent"

4
content/some-article.md

@ -1,7 +1,9 @@
+++
title = "What is Gutenberg"
date = 2017-09-24
category = "Hello world"
[taxonomies]
categories = ["Hello world"]
+++
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc eu feugiat sapien. Aenean ligula nunc, laoreet id sem in, interdum bibendum felis. Donec vel dui neque. Praesent ac sem ut justo volutpat rutrum a imperdiet tellus. Nam lobortis massa non hendrerit hendrerit. Vivamus porttitor dignissim turpis, eget aliquam urna tincidunt non. Aliquam et fringilla turpis. Nullam eros est, eleifend in ornare sed, hendrerit eget est. Aliquam tellus felis, suscipit vitae ex vel, fringilla tempus massa. Nulla facilisi. Pellentesque lobortis consequat lectus. Maecenas ac libero elit.

2
content/some-other-article.md

@ -2,6 +2,8 @@
title = "A first theme for Gutenberg"
date = 2017-09-25
category = "Prog"
[taxonomies]
tags = ["rust", "ssg", "other"]
+++

6
templates/categories.html → templates/categories/list.html

@ -7,11 +7,11 @@
<h1>Categories</h1>
{% if categories %}
{% if terms %}
<ul>
{% for category in categories %}
{% for term in terms %}
<li>
<a href="{{ category.permalink }}">{{ category.name }}</a>({{ category.pages | length }})
<a href="{{ term.permalink }}">{{ term.name }}</a>({{ term.pages | length }})
</li>
{% endfor %}
</ul>

4
templates/category.html → templates/categories/single.html

@ -6,9 +6,9 @@
{{ super() }}
{% endblock header %}
<h1>{{ category.name }}</h1>
<h1>{{ term.name }}</h1>
{% for page in category.pages %}
{% for page in term.pages %}
{{ post_macros::page_in_list(page=page) }}
{% endfor %}
{% endblock content %}

17
templates/page.html

@ -19,16 +19,17 @@
{% if config.extra.author %}
Published by {{ config.extra.author }}
{% endif %}
{% if page.category %}
in <a href="{{ get_taxonomy_url(kind="category", name=page.category) }}">{{ page.category }}</a>
{% if page.taxonomies.categories %}
{% set category = page.taxonomies.categories[0] %}
in <a href="{{ get_taxonomy_url(kind="categories", name=category) }}">{{ category }}</a>
{% endif %}
{% if page.tags %}
{% if page.taxonomies.tags %}
and tagged
{% for tag in page.tags %}
<a href="{{ get_taxonomy_url(kind="tag", name=tag) }}">{{ tag }}</a>
{% if page.tags | length > 1 %}
{% if loop.index != page.tags | length %}
{% if loop.index == page.tags | length - 1 %}
{% for tag in page.taxonomies.tags %}
<a href="{{ get_taxonomy_url(kind="tags", name=tag) }}">{{ tag }}</a>
{% if page.taxonomies.tags | length > 1 %}
{% if loop.index != page.taxonomies.tags | length %}
{% if loop.index == page.taxonomies.tags | length - 1 %}
and
{% else %}
,

6
templates/tags.html → templates/tags/list.html

@ -7,10 +7,10 @@
<h1>Tags</h1>
{% if tags %}
{% if terms %}
<ul>
{% for tag in tags %}
<li><a href="{{ tag.permalink }}">{{ tag.name }}</a> ({{ tag.pages | length }})</li>
{% for term in terms %}
<li><a href="{{ term.permalink }}">{{ term.name }}</a> ({{ term.pages | length }})</li>
{% endfor %}
</ul>
{% endif %}

4
templates/tag.html → templates/tags/single.html

@ -5,9 +5,9 @@
{{ super() }}
{% endblock header %}
<h1>{{ tag.name }}</h1>
<h1>{{ term.name }}</h1>
{% for page in tag.pages %}
{% for page in term.pages %}
{{ post_macros::page_in_list(page=page) }}
{% endfor %}
{% endblock content %}

2
theme.toml

@ -2,7 +2,7 @@ name = "after-dark"
description = "A robust, elegant dark theme"
license = "MIT"
homepage = "https://github.com/Keats/after-dark"
min_version = "0.2"
min_version = "0.4.0"
[extra]

Loading…
Cancel
Save