mirror of
https://github.com/pawroman/zola-theme-terminimal.git
synced 2025-04-04 16:37:11 +02:00
Merge 56fbfcfc52
into 7f630a4e31
This commit is contained in:
commit
2b1187afe2
10
README.md
10
README.md
|
@ -348,6 +348,16 @@ page_titles = "combined"
|
||||||
All the configuration options are also described in
|
All the configuration options are also described in
|
||||||
[`config.toml`](../master/config.toml).
|
[`config.toml`](../master/config.toml).
|
||||||
|
|
||||||
|
### Post date format
|
||||||
|
|
||||||
|
You can customize the format of the post date by adding:
|
||||||
|
|
||||||
|
```toml
|
||||||
|
[extra]
|
||||||
|
# Overwrite the format to Jan 13, 2025.
|
||||||
|
post_date_format = "%b %d, %Y"
|
||||||
|
```
|
||||||
|
|
||||||
## Extending
|
## Extending
|
||||||
|
|
||||||
Each of the templates defines named blocks, so
|
Each of the templates defines named blocks, so
|
||||||
|
|
|
@ -34,6 +34,9 @@ accent_color = "blue"
|
||||||
# Defaults to accent color (or, if not accent color specified, to blue).
|
# Defaults to accent color (or, if not accent color specified, to blue).
|
||||||
background_color = "blue"
|
background_color = "blue"
|
||||||
|
|
||||||
|
# Format of the post date - defaults to "2025-01-13".
|
||||||
|
post_date_format = "%Y-%m-%d"
|
||||||
|
|
||||||
# The logo text - defaults to "Terminimal theme"
|
# The logo text - defaults to "Terminimal theme"
|
||||||
logo_text = "Terminimal theme"
|
logo_text = "Terminimal theme"
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
{% macro date(page) %}
|
{% macro date(page) %}
|
||||||
<span class="post-date">
|
<span class="post-date">
|
||||||
{%- if page.date %}
|
{%- if page.date %}
|
||||||
{{ page.date | date(format="%Y-%m-%d") }}
|
{{ page.date | date(format=config.extra.post_date_format) }}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
</span>
|
</span>
|
||||||
{% endmacro post_date %}
|
{% endmacro post_date %}
|
||||||
|
|
|
@ -30,6 +30,9 @@ accent_color = "blue"
|
||||||
# Defaults to accent color (or, if not accent color specified, to blue).
|
# Defaults to accent color (or, if not accent color specified, to blue).
|
||||||
background_color = "blue"
|
background_color = "blue"
|
||||||
|
|
||||||
|
# Format of the post date - defaults to "2025-01-13".
|
||||||
|
post_date_format = "%Y-%m-%d"
|
||||||
|
|
||||||
# The logo text - defaults to 2 non-breaking spaces.
|
# The logo text - defaults to 2 non-breaking spaces.
|
||||||
logo_text = "Terminimal theme"
|
logo_text = "Terminimal theme"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue