diff options
author | Alan Pearce | 2023-09-02 18:54:22 +0200 |
---|---|---|
committer | Alan Pearce | 2023-09-02 18:54:22 +0200 |
commit | 9a344d88944a08a96e9681fd399d9b2f25eac56c (patch) | |
tree | e445f089fda5e9458cdfcdb723b71e89388d036d | |
parent | 241f290f697a1301c6173d41fb9c6b45ec203287 (diff) | |
download | zola-bearblog-9a344d88944a08a96e9681fd399d9b2f25eac56c.tar.lz zola-bearblog-9a344d88944a08a96e9681fd399d9b2f25eac56c.tar.zst zola-bearblog-9a344d88944a08a96e9681fd399d9b2f25eac56c.zip |
Add meta description
-rw-r--r-- | config.toml | 2 | ||||
-rw-r--r-- | templates/seo_tags.html | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/config.toml b/config.toml index ca8d27a..9b94cd6 100644 --- a/config.toml +++ b/config.toml @@ -1,6 +1,6 @@ title = "Zola ʕ•ᴥ•ʔ Bear Blog" base_url = "https://alanpearce.codeberg.page/zola-bearblog" -description = "" +description = "A Zola-theme based on Bear Blog." # Whether to automatically compile all Sass files in the sass directory compile_sass = false diff --git a/templates/seo_tags.html b/templates/seo_tags.html index 797569a..4eb2bc8 100644 --- a/templates/seo_tags.html +++ b/templates/seo_tags.html @@ -1 +1,2 @@ <meta name="title" content="{% if page.title %}{{ page.title }}{% else %}{{ config.title }}{% endif %}"> +<meta name="description" content="{{ config.description }}" /> |