minor fixes
This commit is contained in:
parent
34b7292813
commit
186a6e411d
4 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
> An elegant and understated theme for Zola
|
> An elegant and understated theme for Zola
|
||||||
|
|
||||||
Zola Inky ([View demo](https://jimmyff.github.io/zola-inky)) is a theme by [jimmyff](https://github.com/jimmyff) and [mr-karan](https://github.com/mr-karan) for the Zola static site generator. This theme was originally based on the [hugo-ink](https://github.com/knadh/hugo-ink) theme, ported by mr-karan. It was then packaged and developed further by jimmyff. The theme is available on [Github](https://github.com/jimmyff/zola-inky) under the MIT license, for more information on how to use it please see the [readme](https://github.com/jimmyff/zola-inky/blob/main/README.md) and check the [changelog](https://github.com/jimmyff/zola-inky/blob/main/CHANGELOG.md) for a list of the latest changes.
|
Zola Inky ([View demo](https://jimmyff.github.io/zola-inky)) is a theme by [jimmyff](https://github.com/jimmyff) and [mr-karan](https://github.com/mr-karan) for the [Zola](https://www.getzola.org/) static site generator. This theme was originally based on the [hugo-ink](https://github.com/knadh/hugo-ink) theme, ported by mr-karan. It was then packaged and developed further by jimmyff. The theme is available on [Github](https://github.com/jimmyff/zola-inky) under the MIT license, for more information on how to use it please see the [readme](https://github.com/jimmyff/zola-inky/blob/main/README.md) and check the [changelog](https://github.com/jimmyff/zola-inky/blob/main/CHANGELOG.md) for a list of the latest changes.
|
||||||
|
|
||||||
[![PNG](screenshot.png)](https://jimmyff.github.io/zola-inky)
|
[![PNG](screenshot.png)](https://jimmyff.github.io/zola-inky)
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ in_search_index = true
|
||||||
|
|
||||||
# About this theme
|
# About this theme
|
||||||
|
|
||||||
Zola Inky is a theme by [jimmyff](https://github.com/jimmyff) and [mr-karan](https://github.com/mr-karan) for the Zola static site generator. This theme was originally based on the [hugo-ink](https://github.com/knadh/hugo-ink) theme, ported by mr-karan. It was then packaged and developed further by jimmyff. The theme is available on [Github](https://github.com/jimmyff/zola-inky) under the MIT license, for more information on how to use it please see the [readme](https://github.com/jimmyff/zola-inky/blob/main/README.md) and check the [changelog](https://github.com/jimmyff/zola-inky/blob/main/CHANGELOG.md) for a list of the latest changes.
|
Zola Inky is a theme by [jimmyff](https://github.com/jimmyff) and [mr-karan](https://github.com/mr-karan) for the [Zola](https://www.getzola.org/) static site generator. This theme was originally based on the [hugo-ink](https://github.com/knadh/hugo-ink) theme, ported by mr-karan. It was then packaged and developed further by jimmyff. The theme is available on [Github](https://github.com/jimmyff/zola-inky) under the MIT license, for more information on how to use it please see the [readme](https://github.com/jimmyff/zola-inky/blob/main/README.md) and check the [changelog](https://github.com/jimmyff/zola-inky/blob/main/CHANGELOG.md) for a list of the latest changes.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title = "Example gallery"
|
title = "Example gallery"
|
||||||
sort_by = "date"
|
sort_by = "date"
|
||||||
template = "gallery.html"
|
template = "gallery.html"
|
||||||
page_template = "section.html"
|
page_template = "post.html"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
Here is the example gallery. The gallery uses a responsive grid and responsive image sizes. These example images are a mix of landscape and portrait images. You can include any number of images from each post and they are grouped by year.
|
Here is the example gallery. The gallery uses a responsive grid and responsive image sizes. These example images are a mix of landscape and portrait images. You can include any number of images from each post and they are grouped by year.
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
{% if page.taxonomies is containing ("tags") %}
|
{% if page.taxonomies is containing ("tags") %}
|
||||||
<ul class="tags">
|
<ul class="tags">
|
||||||
{% for tag in page.taxonomies["tags"] %}
|
{% for tag in page.taxonomies["tags"] %}
|
||||||
<li><a href='/tags/{{ tag | slugify }}'>{{ tag }}</a></li>
|
<li><a href='{{ config.base_url | safe }}/tags/{{ tag | slugify }}'>{{ tag }}</a></li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue