diff --git a/docs/content/themes/DeepThought/index.md b/docs/content/themes/DeepThought/index.md
index ee555a2b9a..97ab6a7ff3 100644
--- a/docs/content/themes/DeepThought/index.md
+++ b/docs/content/themes/DeepThought/index.md
@@ -3,11 +3,11 @@
 title = "DeepThought"
 description = "A simple blog theme focused on writing powered by Bulma and Zola."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/RatanShreshtha/DeepThought.git"
 homepage = "https://github.com/RatanShreshtha/DeepThought"
 minimum_version = "0.9.0"
diff --git a/docs/content/themes/Ergo/index.md b/docs/content/themes/Ergo/index.md
index d79cefb082..a71e0904a6 100644
--- a/docs/content/themes/Ergo/index.md
+++ b/docs/content/themes/Ergo/index.md
@@ -3,11 +3,11 @@
 title = "Ergo"
 description = "A simple blog Theme focused on writing, inspired by svbtle"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/InsidiousMind/Ergo.git"
 homepage = "https://github.com/insipx/Ergo"
 minimum_version = "0.4.1"
diff --git a/docs/content/themes/Zulma/index.md b/docs/content/themes/Zulma/index.md
index 2b7e4397c5..e39bfe8030 100644
--- a/docs/content/themes/Zulma/index.md
+++ b/docs/content/themes/Zulma/index.md
@@ -3,11 +3,11 @@
 title = "Zulma"
 description = "A zola theme based off bulma.css"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/Worble/Zulma"
 homepage = "https://github.com/Worble/Zulma"
 minimum_version = "0.6.0"
diff --git a/docs/content/themes/abridge/index.md b/docs/content/themes/abridge/index.md
new file mode 100644
index 0000000000..3417048688
--- /dev/null
+++ b/docs/content/themes/abridge/index.md
@@ -0,0 +1,228 @@
+
++++
+title = "abridge"
+description = "A fast and lightweight Zola theme using semantic html, abridge.css class-light CSS, and No JS."
+template = "theme.html"
+date = 2022-03-29T03:40:07-07:00
+
+[extra]
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
+repository = "https://github.com/Jieiku/abridge"
+homepage = "https://github.com/jieiku/abridge"
+minimum_version = "0.14.1"
+license = "MIT"
+demo = "https://jieiku.github.io/abridge-demo/"
+
+[extra.author]
+name = "Jake G (jieiku)"
+homepage = "https://github.com/jieiku"
++++        
+
+# Abridge Zola Theme
+
+Abridge is a fast and lightweight Zola theme using semantic html, class-light [abridge.css](https://github.com/jieiku/abridge-css), and No JS.
+
+## Demo
+
+[https://jieiku.github.io/abridge-demo/](https://jieiku.github.io/abridge-demo/)
+
+## Requirements
+
+This theme requires version 0.14.1 or later of [Zola](https://www.getzola.org/documentation/getting-started/installation/)
+
+## Quick Start
+
+```bash
+git clone https://github.com/jieiku/abridge
+cd abridge
+zola serve
+# open http://127.0.0.1:1111/ in the browser
+```
+
+## Installation
+The Quick Start example shows you how to run the theme directly as a site.
+Next we will use abridge as a theme to a NEW site.
+
+### Step 1: Create a new zola site
+
+```bash
+zola init mysite
+```
+
+### Step 2: Install abridge
+
+Download this theme to your themes directory:
+
+```bash
+cd mysite/themes
+git clone https://github.com/jieiku/abridge.git
+```
+
+Or install as a submodule:
+
+```bash
+cd mysite
+git init  # if your project is a git repository already, ignore this command
+git submodule add https://github.com/jieiku/abridge.git themes/abridge
+```
+
+### Step 3: Configuration
+
+Enable the theme in your `config.toml` in the site directory:
+
+```toml
+theme = "abridge"
+```
+
+Or copy the `config.toml` from the theme directory to your project's
+root directory, and uncomment the theme line:
+
+```bash
+cp themes/abridge/config.toml config.toml
+sed -i 's/^#theme = "abridge"/theme = "abridge"/' config.toml
+```
+
+### Step 4: Add new content
+
+You can copy the content from the theme directory to your project:
+
+```bash
+cp -r themes/abridge/content .
+```
+
+You can modify or add new posts in the content directory as needed.
+
+### Step 5: Run the project
+
+Just run `zola serve` in the root path of the project:
+
+```bash
+zola serve
+```
+
+Zola will start the development web server making your site accessible by default at
+`http://127.0.0.1:1111`. Saved changes will live reload in the browser.
+
+## Customization
+
+You can customize your configurations, templates and content for yourself. Look
+at the `config.toml`, `content` files, and templates files in this
+repo for an idea.
+
+### Global Configuration
+
+There are some configuration options that you can customize in `config.toml`.
+
+#### Configuration options before `extra` options
+
+Set the authors's taxonomies for the site.
+
+```toml
+taxonomies = [
+  {name = "authors"},
+]
+```
+
+Use search function for the content.
+
+```toml
+build_search_index = true
+```
+
+Currently this theme has not yet implemented a search, there are however several themes that have.
+For the moment you can look at how those other themes have implemented their search.
+I plan to implement a search field eventually, but am still weighing my options.
+I would prefer a self hosted search method that works even if javascript is disabled in the browser. (open an issue report if you know of one.)
+
+#### Configuration options under the `extra`
+
+The following options should be under the `[extra]` in `config.toml`
+
+- `recent = true` - This enabled the Recent posts box visible on the top right.
+- `recent_items = 9` - The number of items to display in the recent posts box
+- `footer_credit = true` - This enables the powered by zola and abridge line in the footer.
+- `textlogo` - The Text based logo in the top left corner
+- `sitedesc` - This add the site description just below the text based logo.
+- `author` - Used for articles to denote the author.
+- `keywords` - This is used for SEO, I am however still working on the SEO related fields, they are likely not 100% correct yet.
+- `banner` - Image to use in seo related cards, this will be the fallback image if the individual articles does not provide one, still a work in progress.
+- `menu` - This is an array of links to display at the top right corner of the page
+- `menu_footer` - This is an array of links to display in the footer of the page
+- `extra.social` - These are the options for the social icons in the footer, and a couple are also used in SEO related meta tags, still a work in progress.
+
+Additionally you should configure which social icons you plan to use. (makes the css file size smaller)
+
+open `themes/abridge/sass/_variables.scss`
+
+To simply turn them all off you can set `$enable-icons: false`
+Otherwise to turn on only the ones you need you would set `$enable-icons: true`
+Then enable only the icons you need, eg for mail you would set `$icon-mail: true`
+You should then disable all the icons that you do not use, as this will decrease the final size of your css file.
+The difference in size is NOT a lot, without icons its ~4kb, with all the social icons its ~12kb.
+There are also some general purpose icons you can use, they are disabled by default.
+
+The theme requires tags and categories taxonomies to be enabled in your `config.toml`:
+
+```toml
+taxonomies = [
+    # You can enable/disable RSS
+    {name = "categories", rss = true},
+    {name = "tags", rss = true},
+]
+```
+
+### Top and Footer menus
+Set a field in `extra` with a key of `menu` and `menu_footer`.
+If a link should have a trailing slash at the end of the url set `slash = true`.
+
+```toml
+# This is the default menu
+menu = [
+    {url = "/", name = "Home", slash = true},
+    {url = "/about/", name = "About", slash = true},
+    {url = "/posts/", name = "Posts", slash = true},
+    {url = "/categories/", name = "Categories", slash = true},
+    {url = "/tags/", name = "Tags", slash = true},
+]
+menu_footer = [
+    {url = "/", name = "Home", slash = true},
+    {url = "/about/", name = "About", slash = true},
+    {url = "/contact/", name = "Contact", slash = true},
+    {url = "/privacy/", name = "Privacy", slash = true},
+    {url = "/sitemap.xml", name = "Sitemap", slash = false},
+]
+```
+
+### SEO and Header Tags
+
+Some SEO Tags have been added as well as some important head tags for browser compatibility.
+
+you can review them in the head section of templates/base.html, all configurable values should be in config.toml under config.extra
+
+SEO is still a work in progress, will be performing more testing and updates as time allows.
+
+### Templates
+
+All pages are extend to the `base.html`, and you can customize them as need.
+
+## Reporting Issues
+
+We use GitHub Issues as the official bug tracker for **abridge**. Please
+search [existing issues](https://github.com/jieiku/abridge/issues). It’s
+possible someone has already reported the same problem.
+
+If your problem or idea is not addressed yet, [open a new issue](https://github.com/jieiku/abridge/issues/new).
+
+## Contributing
+
+We'd love your help! Especially with fixes to issues.
+The overall idea behind abridge is to be lightweight and fast, and to use zero javascript.
+The only place that I may eventually add javascript will be for the site search, but hopefully I can find another way.
+
+## License
+
+**abridge** is distributed under the terms of the
+[MIT license](https://github.com/jieiku/abridge/blob/master/LICENSE).
+
+        
\ No newline at end of file
diff --git a/docs/content/themes/abridge/screenshot.png b/docs/content/themes/abridge/screenshot.png
new file mode 100644
index 0000000000..109c038f22
Binary files /dev/null and b/docs/content/themes/abridge/screenshot.png differ
diff --git a/docs/content/themes/adidoks/index.md b/docs/content/themes/adidoks/index.md
index b655cd554a..5c205b8cfa 100644
--- a/docs/content/themes/adidoks/index.md
+++ b/docs/content/themes/adidoks/index.md
@@ -3,11 +3,11 @@
 title = "adidoks"
 description = "AdiDoks is a Zola theme helping you build modern documentation."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/aaranxu/adidoks.git"
 homepage = "https://github.com/aaranxu/adidoks"
 minimum_version = "0.13.0"
diff --git a/docs/content/themes/after-dark/index.md b/docs/content/themes/after-dark/index.md
index ed88a7173c..64ea321986 100644
--- a/docs/content/themes/after-dark/index.md
+++ b/docs/content/themes/after-dark/index.md
@@ -3,11 +3,11 @@
 title = "after-dark"
 description = "A robust, elegant dark theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/getzola/after-dark.git"
 homepage = "https://github.com/getzola/after-dark"
 minimum_version = "0.11.0"
diff --git a/docs/content/themes/anatole-zola/index.md b/docs/content/themes/anatole-zola/index.md
index 31e8d851e8..e9e8d4cce2 100644
--- a/docs/content/themes/anatole-zola/index.md
+++ b/docs/content/themes/anatole-zola/index.md
@@ -3,11 +3,11 @@
 title = "anatole-zola"
 description = "A port of farbox-theme-Anatole for zola"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/longfangsong/anatole-zola.git"
 homepage = "https://github.com/longfangsong/anatole-zola"
 minimum_version = "0.4.0"
diff --git a/docs/content/themes/anpu/index.md b/docs/content/themes/anpu/index.md
index 3136beb382..91e969d771 100644
--- a/docs/content/themes/anpu/index.md
+++ b/docs/content/themes/anpu/index.md
@@ -3,11 +3,11 @@
 title = "Anpu"
 description = "A port of the Hugo Anubis theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/zbrox/anpu-zola-theme.git"
 homepage = "https://github.com/zbrox/anpu-zola-theme"
 minimum_version = "0.11.0"
diff --git a/docs/content/themes/blow/index.md b/docs/content/themes/blow/index.md
index 4e14217dc0..50366a7ac3 100644
--- a/docs/content/themes/blow/index.md
+++ b/docs/content/themes/blow/index.md
@@ -3,11 +3,11 @@
 title = "Blow"
 description = "A Zola theme made with Tailwindcss"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/tchartron/blow.git"
 homepage = "https://github.com/tchartron/blow"
 minimum_version = "0.9.0"
diff --git a/docs/content/themes/book/index.md b/docs/content/themes/book/index.md
index 51d713be21..a7a56a7bf3 100644
--- a/docs/content/themes/book/index.md
+++ b/docs/content/themes/book/index.md
@@ -3,11 +3,11 @@
 title = "book"
 description = "A book theme inspired from GitBook/mdBook"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/getzola/book.git"
 homepage = "https://github.com/getzola/book"
 minimum_version = "0.5.0"
diff --git a/docs/content/themes/clean-blog/index.md b/docs/content/themes/clean-blog/index.md
index c0b33185d0..412043e0ba 100644
--- a/docs/content/themes/clean-blog/index.md
+++ b/docs/content/themes/clean-blog/index.md
@@ -3,11 +3,11 @@
 title = "Clean Blog"
 description = "A port of Start Bootstrap Clean Blog for Zola"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/dave-tucker/zola-clean-blog"
 homepage = "https://github.com/dave-tucker/zola-clean-blog"
 minimum_version = "0.4.0"
diff --git a/docs/content/themes/codinfox-zola/index.md b/docs/content/themes/codinfox-zola/index.md
index 943e4f9817..f59c1ed955 100644
--- a/docs/content/themes/codinfox-zola/index.md
+++ b/docs/content/themes/codinfox-zola/index.md
@@ -3,11 +3,11 @@
 title = "codinfox-zola"
 description = "Codinfox theme for Zola"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/svavs/codinfox-zola"
 homepage = "https://github.com/svavs/codinfox-zola"
 minimum_version = "0.11.0"
diff --git a/docs/content/themes/d3c3nt/index.md b/docs/content/themes/d3c3nt/index.md
index 07a8a667b9..5340de9391 100644
--- a/docs/content/themes/d3c3nt/index.md
+++ b/docs/content/themes/d3c3nt/index.md
@@ -3,11 +3,11 @@
 title = "d3c3nt"
 description = "A simple, clean, and flexible theme for personal sites."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://git.figbert.com/FIGBERT/d3c3nt.git"
 homepage = "https://github.com/figbert/d3c3nt"
 minimum_version = "0.15.0"
diff --git a/docs/content/themes/dinkleberg/index.md b/docs/content/themes/dinkleberg/index.md
index 6cc70bb261..ea3e33a8ab 100644
--- a/docs/content/themes/dinkleberg/index.md
+++ b/docs/content/themes/dinkleberg/index.md
@@ -3,11 +3,11 @@
 title = "dinkleberg"
 description = "The Rust BR theme for Gutenberg"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/rust-br/dinkleberg.git"
 homepage = "https://github.com/rust-br/dinkleberg"
 minimum_version = "0.4.0"
diff --git a/docs/content/themes/docsascode-theme/index.md b/docs/content/themes/docsascode-theme/index.md
index 99178d06a4..de9395263c 100644
--- a/docs/content/themes/docsascode-theme/index.md
+++ b/docs/content/themes/docsascode-theme/index.md
@@ -3,11 +3,11 @@
 title = "Docsascode_theme"
 description = "A modern simple Zola's theme related to docs as code methodology"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/codeandmedia/zola_docsascode_theme.git"
 homepage = "https://github.com/codeandmedia/zola_docsascode_theme"
 minimum_version = "0.10.0"
diff --git a/docs/content/themes/dose/index.md b/docs/content/themes/dose/index.md
index 19523d0bd5..86e1314476 100644
--- a/docs/content/themes/dose/index.md
+++ b/docs/content/themes/dose/index.md
@@ -3,11 +3,11 @@
 title = "dose"
 description = "a small blog theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/oltdaniel/dose.git"
 homepage = "https://github.com/oltdaniel/dose"
 minimum_version = "0.14.0"
diff --git a/docs/content/themes/even/index.md b/docs/content/themes/even/index.md
index 550f3b16d8..815e192de6 100644
--- a/docs/content/themes/even/index.md
+++ b/docs/content/themes/even/index.md
@@ -3,11 +3,11 @@
 title = "even"
 description = "A robust, elegant dark theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/getzola/even.git"
 homepage = "https://github.com/getzola/even"
 minimum_version = "0.11.0"
diff --git a/docs/content/themes/feather/index.md b/docs/content/themes/feather/index.md
index f88e6e79dd..62e0ae069e 100644
--- a/docs/content/themes/feather/index.md
+++ b/docs/content/themes/feather/index.md
@@ -3,11 +3,11 @@
 title = "feather"
 description = "A modern blog theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/piedoom/feather"
 homepage = "https://github.com/piedoom/feather"
 minimum_version = "0.5.1"
diff --git a/docs/content/themes/float/index.md b/docs/content/themes/float/index.md
index 95f53cc677..2d5ed27227 100644
--- a/docs/content/themes/float/index.md
+++ b/docs/content/themes/float/index.md
@@ -3,11 +3,11 @@
 title = "Float"
 description = "An elegant blog theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://gitlab.com/float-theme/float.git"
 homepage = "https://float-theme.netlify.app/"
 minimum_version = "0.11.0"
diff --git a/docs/content/themes/hallo/index.md b/docs/content/themes/hallo/index.md
index acf0a5dac5..08e1e2ca8d 100644
--- a/docs/content/themes/hallo/index.md
+++ b/docs/content/themes/hallo/index.md
@@ -3,11 +3,11 @@
 title = "hallo"
 description = "A single-page theme to introduce yourself."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/flyingP0tat0/zola-hallo.git"
 homepage = "https://github.com/janbaudisch/zola-hallo"
 minimum_version = "0.4.0"
diff --git a/docs/content/themes/hook/index.md b/docs/content/themes/hook/index.md
index 463ed47740..380e98e975 100644
--- a/docs/content/themes/hook/index.md
+++ b/docs/content/themes/hook/index.md
@@ -3,11 +3,11 @@
 title = "Hook"
 description = "Clean and simple personal site/blog theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/InputUsername/zola-hook.git"
 homepage = "https://github.com/InputUsername/zola-hook"
 minimum_version = "0.15.2"
diff --git a/docs/content/themes/hyde/index.md b/docs/content/themes/hyde/index.md
index aae38ea157..46d48b7334 100644
--- a/docs/content/themes/hyde/index.md
+++ b/docs/content/themes/hyde/index.md
@@ -3,11 +3,11 @@
 title = "hyde"
 description = "A classic blog theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/getzola/hyde.git"
 homepage = "https://github.com/getzola/hyde"
 minimum_version = "0.11.0"
diff --git a/docs/content/themes/juice/index.md b/docs/content/themes/juice/index.md
index 90f85b94ad..3f7577e851 100644
--- a/docs/content/themes/juice/index.md
+++ b/docs/content/themes/juice/index.md
@@ -3,11 +3,11 @@
 title = "juice"
 description = "An intuitive, elegant, and lightweight Zola theme for product sites."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/huhu/juice"
 homepage = "https://github.com/huhu/juice"
 minimum_version = "0.11.0"
diff --git a/docs/content/themes/karzok/index.md b/docs/content/themes/karzok/index.md
index ce97cdf316..928889b5b6 100644
--- a/docs/content/themes/karzok/index.md
+++ b/docs/content/themes/karzok/index.md
@@ -3,11 +3,11 @@
 title = "karzok"
 description = "A theme for your documentation. Fast and secure"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/kogeletey/karzok"
 homepage = "https://github.com/kogeletey/karzok"
 minimum_version = "0.0.14"
diff --git a/docs/content/themes/kodama-theme/index.md b/docs/content/themes/kodama-theme/index.md
index d21489bae6..e234c46d81 100644
--- a/docs/content/themes/kodama-theme/index.md
+++ b/docs/content/themes/kodama-theme/index.md
@@ -3,11 +3,11 @@
 title = "kodama"
 description = "Theme insipired by wowchemy academic."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/adfaure/kodama-theme"
 homepage = "https://github.com/adfaure/kodama-theme"
 minimum_version = "0.15"
diff --git a/docs/content/themes/lightspeed/index.md b/docs/content/themes/lightspeed/index.md
index 48dcba2096..cd05a6e386 100644
--- a/docs/content/themes/lightspeed/index.md
+++ b/docs/content/themes/lightspeed/index.md
@@ -3,11 +3,11 @@
 title = "lightspeed"
 description = "Zola theme with a perfect Lighthouse score"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/carpetscheme/lightspeed"
 homepage = "https://github.com/carpetscheme/lightspeed"
 minimum_version = "0.10.0"
diff --git a/docs/content/themes/ntun/index.md b/docs/content/themes/ntun/index.md
index c7fa344a21..5dc92ca3ab 100644
--- a/docs/content/themes/ntun/index.md
+++ b/docs/content/themes/ntun/index.md
@@ -3,11 +3,11 @@
 title = "ntun-zola-theme"
 description = "A classic resume theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/Netoun/ntun"
 homepage = "https://github.com/netoun/ntun"
 minimum_version = "0.1.0"
diff --git a/docs/content/themes/oceanic-zen/index.md b/docs/content/themes/oceanic-zen/index.md
index ec2f6f009f..7bcc4ba280 100644
--- a/docs/content/themes/oceanic-zen/index.md
+++ b/docs/content/themes/oceanic-zen/index.md
@@ -3,11 +3,11 @@
 title = "Oceanic Zen"
 description = "Minimalistic blog theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/barlog-m/oceanic-zen.git"
 homepage = "https://github.com/barlog-m/oceanic-zen"
 minimum_version = "0.12.0"
diff --git a/docs/content/themes/papaya/index.md b/docs/content/themes/papaya/index.md
index 3068395b48..74a11258d0 100644
--- a/docs/content/themes/papaya/index.md
+++ b/docs/content/themes/papaya/index.md
@@ -3,11 +3,11 @@
 title = "Papaya"
 description = "A clean Zola theme for blogging and projects"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/justint/papaya.git"
 homepage = "https://github.com/justint/papaya"
 minimum_version = "0.14.0"
diff --git a/docs/content/themes/resume/index.md b/docs/content/themes/resume/index.md
index 3ed4abdba8..3553a8c160 100644
--- a/docs/content/themes/resume/index.md
+++ b/docs/content/themes/resume/index.md
@@ -3,11 +3,11 @@
 title = "resume"
 description = "A resume theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/AlongWY/zola-resume.git"
 homepage = "https://github.com/alongwy/zola-resume"
 minimum_version = "0.11.0"
diff --git a/docs/content/themes/sam/index.md b/docs/content/themes/sam/index.md
index 23b4d8abc6..6aab5f1f2f 100644
--- a/docs/content/themes/sam/index.md
+++ b/docs/content/themes/sam/index.md
@@ -3,11 +3,11 @@
 title = "sam"
 description = "A Simple and Minimalist theme with a focus on typography and content."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/janbaudisch/zola-sam.git"
 homepage = "https://github.com/janbaudisch/zola-sam"
 minimum_version = "0.4.0"
diff --git a/docs/content/themes/serene/index.md b/docs/content/themes/serene/index.md
index 538a7e9cd1..fea2022077 100644
--- a/docs/content/themes/serene/index.md
+++ b/docs/content/themes/serene/index.md
@@ -3,11 +3,11 @@
 title = "serene"
 description = "A blog theme for zola, simple and clean."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/isunjn/serene.git"
 homepage = "https://github.com/isunjn/serene"
 minimum_version = "0.9.0"
diff --git a/docs/content/themes/simple-dev-blog/index.md b/docs/content/themes/simple-dev-blog/index.md
index a27e037956..10b851b19e 100644
--- a/docs/content/themes/simple-dev-blog/index.md
+++ b/docs/content/themes/simple-dev-blog/index.md
@@ -3,11 +3,11 @@
 title = "simple-dev-blog"
 description = "A simple dev blog theme with no javascript, prerendered linked pages and SEO tags."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/bennetthardwick/simple-dev-blog-zola-starter"
 homepage = "https://github.com/bennetthardwick/simple-dev-blog-zola-starter"
 minimum_version = "0.4.0"
diff --git a/docs/content/themes/simplify/index.md b/docs/content/themes/simplify/index.md
index 69df46be75..62587f3640 100644
--- a/docs/content/themes/simplify/index.md
+++ b/docs/content/themes/simplify/index.md
@@ -3,11 +3,11 @@
 title = "simplify"
 description = "A minimal blog theme built with simple.css"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/tarunjana/simplify.git"
 homepage = "https://github.com/tarunjana/simplify"
 minimum_version = "0.15.3"
diff --git a/docs/content/themes/slim/index.md b/docs/content/themes/slim/index.md
index eff09fbc08..a506be216d 100644
--- a/docs/content/themes/slim/index.md
+++ b/docs/content/themes/slim/index.md
@@ -3,11 +3,11 @@
 title = "Slim"
 description = "Slim is a minimal, clean and beautiful theme for Zola."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/jameshclrk/zola-slim"
 homepage = "https://github.com/jameshclrk/zola-slim"
 minimum_version = "0.8.0"
diff --git a/docs/content/themes/solar-theme-zola/index.md b/docs/content/themes/solar-theme-zola/index.md
index dc72f003dc..469e80866a 100644
--- a/docs/content/themes/solar-theme-zola/index.md
+++ b/docs/content/themes/solar-theme-zola/index.md
@@ -3,11 +3,11 @@
 title = "solar-theme-zola"
 description = "A port of solar-theme-hugo for zola"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/hulufei/solar-theme-zola.git"
 homepage = "https://github.com/hulufei/solar-theme-zola"
 minimum_version = "0.4.0"
diff --git a/docs/content/themes/tale-zola/index.md b/docs/content/themes/tale-zola/index.md
index 801ee8130a..31b1d903e1 100644
--- a/docs/content/themes/tale-zola/index.md
+++ b/docs/content/themes/tale-zola/index.md
@@ -3,11 +3,11 @@
 title = "tale-zola"
 description = "Tala-Zola is a minimal Zola theme helping you to build a nice and seo-ready blog."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/aaranxu/tale-zola.git"
 homepage = "https://github.com/aaranxu/tale-zola"
 minimum_version = "0.13.0"
diff --git a/docs/content/themes/toucan/index.md b/docs/content/themes/toucan/index.md
index 96ca550034..d91e1d000a 100644
--- a/docs/content/themes/toucan/index.md
+++ b/docs/content/themes/toucan/index.md
@@ -3,11 +3,11 @@
 title = "Toucan"
 description = "Inspired from Pelican default theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://git.42l.fr/HugoTrentesaux/toucan.git"
 homepage = "https://git.42l.fr/HugoTrentesaux/toucan"
 minimum_version = "0.8.0"
diff --git a/docs/content/themes/zerm/index.md b/docs/content/themes/zerm/index.md
index 30d4283d98..5e540ceeff 100644
--- a/docs/content/themes/zerm/index.md
+++ b/docs/content/themes/zerm/index.md
@@ -3,11 +3,11 @@
 title = "zerm"
 description = "A minimalistic and dark theme based on Radek Kozieł's theme for Hugo"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/ejmg/zerm.git"
 homepage = "https://github.com/ejmg/zerm"
 minimum_version = "0.8.0"
diff --git a/docs/content/themes/zola-henry/index.md b/docs/content/themes/zola-henry/index.md
index 81b957e1fc..0e0ef0f7eb 100644
--- a/docs/content/themes/zola-henry/index.md
+++ b/docs/content/themes/zola-henry/index.md
@@ -3,11 +3,11 @@
 title = "henry"
 description = "A timeless blog theme"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/sirodoht/zola-henry"
 homepage = "https://github.com/sirodoht/zola-henry"
 minimum_version = "0.4.0"
diff --git a/docs/content/themes/zola-paper/index.md b/docs/content/themes/zola-paper/index.md
index 70f5d05c28..8f34024832 100644
--- a/docs/content/themes/zola-paper/index.md
+++ b/docs/content/themes/zola-paper/index.md
@@ -3,11 +3,11 @@
 title = "zola-paper"
 description = "A clean theme inspired from hugo-paper."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/schoenenberg/zola-paper.git"
 homepage = "https://github.com/schoenenberg/zola-paper"
 minimum_version = "0.11.0"
diff --git a/docs/content/themes/zola-pickles/index.md b/docs/content/themes/zola-pickles/index.md
index 069e97196c..d43b24dae7 100644
--- a/docs/content/themes/zola-pickles/index.md
+++ b/docs/content/themes/zola-pickles/index.md
@@ -3,11 +3,11 @@
 title = "pickles"
 description = "A modern, simple, clean blog theme for Zola."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/lukehsiao/zola-pickles.git"
 homepage = "https://github.com/lukehsiao/zola-pickles"
 minimum_version = "0.13.0"
diff --git a/docs/content/themes/zola-theme-hikari/index.md b/docs/content/themes/zola-theme-hikari/index.md
index 4920319e26..602afeaeb6 100644
--- a/docs/content/themes/zola-theme-hikari/index.md
+++ b/docs/content/themes/zola-theme-hikari/index.md
@@ -3,11 +3,11 @@
 title = "Hikari"
 description = "Fluid, responsive blog theme for Zola"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/waynee95/zola-theme-hikari"
 homepage = "https://github.com/waynee95/zola-theme-hikari"
 minimum_version = "0.5.1"
diff --git a/docs/content/themes/zola.386/index.md b/docs/content/themes/zola.386/index.md
index 78cb0e815b..cd85554c25 100644
--- a/docs/content/themes/zola.386/index.md
+++ b/docs/content/themes/zola.386/index.md
@@ -3,11 +3,11 @@
 title = "zola.386"
 description = "Zola port of the BOOTSTRA.386 theme."
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/lopes/zola.386"
 homepage = "https://github.com/lopes/zola.386"
 minimum_version = "0.10.1"
diff --git a/docs/content/themes/zola_easydocs_theme/index.md b/docs/content/themes/zola_easydocs_theme/index.md
index be81a40c0a..b616f8e650 100644
--- a/docs/content/themes/zola_easydocs_theme/index.md
+++ b/docs/content/themes/zola_easydocs_theme/index.md
@@ -3,11 +3,11 @@
 title = "EasyDocs"
 description = "An easy way to create docs for your project"
 template = "theme.html"
-date = 2022-03-17T09:10:12+01:00
+date = 2022-03-29T03:40:07-07:00
 
 [extra]
-created = 2022-03-17T09:10:12+01:00
-updated = 2022-03-17T09:10:12+01:00
+created = 2022-03-29T03:40:07-07:00
+updated = 2022-03-29T03:40:07-07:00
 repository = "https://github.com/codeandmedia/zola_easydocs_theme.git"
 homepage = "https://github.com/codeandmedia/zola_easydocs_theme"
 minimum_version = "0.13.0"