diff --git a/EXAMPLES.md b/EXAMPLES.md
index f6eafe88d8..58434106bd 100644
--- a/EXAMPLES.md
+++ b/EXAMPLES.md
@@ -23,7 +23,7 @@
| [shaleenjain.com](https://shaleenjain.com) | https://github.com/shalzz/shalzz.github.io |
| [Hello, Rust!](https://hello-rust.show) | https://github.com/hello-rust/hello-rust.github.io |
| [maxdeviant.com](https://maxdeviant.com/) | |
-| [Uwes Blog](https://uwe-arzt.de) | https://github.com/uwearzt/site-uwe-arzt |
+| [Uwes Blog](https://uwe-arzt.de) | https://codeberg.org/uwearzt/site-uwe-arzt |
| [ozkriff.games](https://ozkriff.games) | https://github.com/ozkriff/ozkriff.github.io-src |
| [Sylvain Kerkour](https://kerkour.fr) | https://gitlab.com/z0mbie42/kerkour.fr |
| [CodeShow by Bruno Rocha](https://codeshow.com.br) | https://github.com/codeshow/site |
@@ -43,3 +43,7 @@
| [146 Parks](https://146parks.blog/) | https://github.com/scouten/146parks.blog |
| [films.mlcdf.fr](https://films.mlcdf.fr) | https://github.com/mlcdf/films |
| [Mish Ushakov](https://mish.co) | |
+| [castor](https://castorisdead.xyz) | https://github.com/whoisYoges/website |
+| [mrkaran](https://mrkaran.dev) | https://github.com/mr-karan/website |
+| [giuseppedepalma](https://giuseppedepalma.com/) | https://github.com/giusdp/giuseppedepalma.com/ |
+
diff --git a/docs/content/documentation/content/shortcodes.md b/docs/content/documentation/content/shortcodes.md
index 4ca48b4062..07e5a4d2fe 100644
--- a/docs/content/documentation/content/shortcodes.md
+++ b/docs/content/documentation/content/shortcodes.md
@@ -5,8 +5,7 @@ weight = 40
Zola borrows the concept of [shortcodes](https://codex.wordpress.org/Shortcode_API) from WordPress.
In our case, a shortcode corresponds to a template defined in the `templates/shortcodes` directory or
-a built-in one that can be used in a Markdown file. If you want to use something similar to shortcodes in your templates,
-try [Tera macros](https://tera.netlify.com/docs#macros).
+a built-in one that can be used in a Markdown file.
Broadly speaking, Zola's shortcodes cover two distinct use cases:
@@ -18,6 +17,8 @@ The latter may also be solved by writing HTML, however Zola allows the use of Ma
rather than `.html`. This may be particularly useful if you want to include headings generated by the shortcode in the
[table of contents](@/documentation/content/table-of-contents.md).
+If you want to use something similar to shortcodes in your templates, you can use [Tera macros](https://tera.netlify.com/docs#macros). They are functions or components that you can call to return some text.
+
## Writing a shortcode
Let's write a shortcode to embed YouTube videos as an example.
In a file called `youtube.html` in the `templates/shortcodes` directory, paste the
diff --git a/docs/content/documentation/deployment/edgio.md b/docs/content/documentation/deployment/edgio.md
new file mode 100644
index 0000000000..f2c7e30b48
--- /dev/null
+++ b/docs/content/documentation/deployment/edgio.md
@@ -0,0 +1,51 @@
++++
+title = "Edgio"
+weight = 50
++++
+
+If you don't have an account with Edgio, you can sign up [here](https://app.layer0.co/signup).
+
+## Manual deploys
+
+For a command-line manual deploy, follow these steps:
+
+1. Install the Edgio CLI:
+
+```bash
+npm i -g @edgio/cli
+```
+
+2. Create a package.json at the root of your project with the following:
+
+```bash
+npm init -y
+```
+
+3. Initialize your project with:
+
+```bash
+edgio init
+```
+
+4. Update routes.js at the root of your project to the following:
+
+```js
+// This file was added by edgio init.
+// You should commit this file to source control.
+
+import { Router } from '@edgio/core/router'
+
+export default new Router().static('public')
+```
+
+5. Build your zola app:
+
+```bash
+zola build
+```
+
+6. Deploy!
+
+```bash
+edgio deploy
+```
diff --git a/docs/content/documentation/deployment/github-pages.md b/docs/content/documentation/deployment/github-pages.md
index f8bfa6d133..de5ac6d7d7 100644
--- a/docs/content/documentation/deployment/github-pages.md
+++ b/docs/content/documentation/deployment/github-pages.md
@@ -30,9 +30,9 @@ Using *Github Actions* for the deployment of your Zola-Page on Github-Pages is p
2. Create the *Github Action*.
3. Check the *Github Pages* section in repository settings.
-Let's start with the token. Remember, if you are publishing the site on the same repo, you do not need to follow that step.
+Let's start with the token. Remember, if you are publishing the site on the same repo, you do not need to follow that step. But you will still need to pass in the automatic `GITHUB_TOKEN` as explained [here](https://docs.github.com/en/actions/security-guides/automatic-token-authentication#example-1-passing-the-github_token-as-an-input).
-For creating the token either click on [here](https://github.com/settings/tokens) or go to Settings > Developer Settings > Personal access tokens. Under the *Select Scopes* section, give it *repo* permissions and click *Generate token*. Then copy the token, navigate to your repository and add in the Settings tab the *Secret* `TOKEN` and paste your token in it.
+For creating the token either click on [here](https://github.com/settings/tokens/new?scopes=public_repo) or go to Settings > Developer Settings > Personal access tokens. Under the *Select Scopes* section, give it *public_repo* permissions and click *Generate token*. Then copy the token, navigate to your repository and add in the Settings tab the *Secret* `TOKEN` and paste your token in it.
Next we need to create the *Github Action*. Here we can make use of the [zola-deploy-action](https://github.com/shalzz/zola-deploy-action). Go to the *Actions* tab of your repository, click on *set up a workflow yourself* to get a blank workflow file. Copy the following script into it and commit it afterwards; note that you may need to change the `github.ref` branch from `main` to `master` or similar, as the action will only run for the branch you choose.
@@ -46,14 +46,16 @@ jobs:
if: github.ref == 'refs/heads/main'
steps:
- name: checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3.0.0
- name: build_and_deploy
- uses: shalzz/zola-deploy-action@v0.14.1
+ uses: shalzz/zola-deploy-action@v0.16.1
env:
# Target branch
PAGES_BRANCH: gh-pages
# Provide personal access token
TOKEN: ${{ secrets.TOKEN }}
+ # Or if publishing to the same repo, use the automatic token
+ #TOKEN: ${{ secrets.GITHUB_TOKEN }}
```
This script is pretty simple, because the [zola-deploy-action](https://github.com/shalzz/zola-deploy-action) is doing everything for you. You just need to provide some details. For more configuration options check out the [README](https://github.com/shalzz/zola-deploy-action/blob/master/README.md).
@@ -75,9 +77,9 @@ jobs:
if: github.ref != 'refs/heads/main'
steps:
- name: 'checkout'
- uses: actions/checkout@v2
+ uses: actions/checkout@v3.0.0
- name: 'build'
- uses: shalzz/zola-deploy-action@v0.13.0
+ uses: shalzz/zola-deploy-action@v0.16.1
env:
PAGES_BRANCH: gh-pages
BUILD_DIR: .
@@ -88,9 +90,9 @@ jobs:
if: github.ref == 'refs/heads/main'
steps:
- name: 'checkout'
- uses: actions/checkout@v2
+ uses: actions/checkout@v3.0.0
- name: 'build and deploy'
- uses: shalzz/zola-deploy-action@v0.13.0
+ uses: shalzz/zola-deploy-action@v0.16.1
env:
PAGES_BRANCH: master
BUILD_DIR: .
diff --git a/docs/content/documentation/deployment/layer0.md b/docs/content/documentation/deployment/layer0.md
deleted file mode 100644
index 11bdac9dff..0000000000
--- a/docs/content/documentation/deployment/layer0.md
+++ /dev/null
@@ -1,55 +0,0 @@
-+++
-title = "Layer0"
-weight = 50
-+++
-
-If you don't have an account with Layer0, you can sign up [here](https://app.layer0.co/signup).
-
-## Manual deploys
-
-For a command-line manual deploy, follow these steps:
-1. Install the Layer0 CLI:
-```bash
-npm i -g @layer0/cli
-```
-
-2. Create a package.json at the root of your project with the following:
-```bash
-npm init
-```
-
-3. Initialize your project with:
-```bash
-0 init
-```
-
-4. Update routes.js at the root of your project to the following:
-```js
-// This file was added by layer0 init.
-// You should commit this file to source control.
-
-import { Router } from '@layer0/core/router'
-
-export default new Router().static('public', ({ cache }) => {
- cache({
- edge: {
- maxAgeSeconds: 60 * 60 * 60 * 365,
- forcePrivateCaching: true,
- },
- browser: {
- maxAgeSeconds: 0,
- serviceWorkerSeconds: 60 * 60 * 24,
- },
- })
-})
-```
-
-5. Build your zola app:
-```bash
-zola build
-```
-
-6. Deploy!
-```bash
-0 deploy
-```
diff --git a/docs/content/documentation/getting-started/installation.md b/docs/content/documentation/getting-started/installation.md
index 0b51c153f8..1d9492826c 100644
--- a/docs/content/documentation/getting-started/installation.md
+++ b/docs/content/documentation/getting-started/installation.md
@@ -79,6 +79,14 @@ Zola is available in the official package repository.
$ doas pkg_add zola
```
+### pkgsrc
+
+Zola is available in the official package repository, with [pkgin](https://pkgin.net/).
+
+```sh
+$ pkgin install zola
+```
+
### Snapcraft
Zola is available on snapcraft:
@@ -101,7 +109,7 @@ To use zola:
$ flatpak run org.getzola.zola [command]
```
-To avoid having to type this everytime, an alias can be created in `~/.bashrc`:
+To avoid having to type this every time, an alias can be created in `~/.bashrc`:
```sh
$ alias zola="flatpak run org.getzola.zola"
diff --git a/docs/content/documentation/getting-started/overview.md b/docs/content/documentation/getting-started/overview.md
index 63f4716619..b71abe4048 100644
--- a/docs/content/documentation/getting-started/overview.md
+++ b/docs/content/documentation/getting-started/overview.md
@@ -222,7 +222,7 @@ The `index.html` file inside the `templates` directory should be:
This is my blog made with Zola.
-Click here to see my posts.
+Click here to see my posts.
{% endblock content %}
```
diff --git a/docs/content/documentation/templates/overview.md b/docs/content/documentation/templates/overview.md
index 5e1685e9a5..20c823070d 100644
--- a/docs/content/documentation/templates/overview.md
+++ b/docs/content/documentation/templates/overview.md
@@ -69,7 +69,7 @@ in Tera.
Converts the given variable to HTML using Markdown. There are a few differences compared to page/section Markdown rendering:
- shortcodes evaluated by this filter cannot access the current rendering context: `config` will be available, but accessing `section` or `page` (among others) from a shortcode called within the `markdown` filter will prevent your site from building (see [this discussion](https://github.com/getzola/zola/pull/1358))
-- `lang` in shortcodes will always be equal to the site's `default_lang` (or `en` otherwise) ; it should not be a problem, but if it is in most cases, but if you need to use language-aware shortcodes in this filter, please refer to the [Shortcode context](@/documentation/content/shortcodes.md#shortcode-context) section of the docs.
+- `lang` in shortcodes will always be equal to the site's `config.default_language` (or `en` otherwise) ; it should not be a problem, but if it is in most cases, but if you need to use language-aware shortcodes in this filter, please refer to the [Shortcode context](@/documentation/content/shortcodes.md#shortcode-context) section of the docs.
By default, the filter will wrap all text in a paragraph. To disable this behaviour, you can
pass `true` to the inline argument:
diff --git a/docs/content/documentation/templates/pages-sections.md b/docs/content/documentation/templates/pages-sections.md
index c7d68ff05f..ded8d66c47 100644
--- a/docs/content/documentation/templates/pages-sections.md
+++ b/docs/content/documentation/templates/pages-sections.md
@@ -34,7 +34,7 @@ toc: Array,
word_count: Number;
// Based on https://help.medium.com/hc/en-us/articles/214991667-Read-time
reading_time: Number;
-// earlier / ligher
+// earlier / lighter
lower: Page?;
// later / heavier
higher: Page?;
diff --git a/docs/content/documentation/themes/creating-a-theme.md b/docs/content/documentation/themes/creating-a-theme.md
index c6b85fe144..70bd147a69 100644
--- a/docs/content/documentation/themes/creating-a-theme.md
+++ b/docs/content/documentation/themes/creating-a-theme.md
@@ -54,13 +54,7 @@ to be able to build the theme from your repository.
## Submitting a theme to the gallery
If you want your theme to be featured in the [themes](@/themes/_index.md) section
-of this site, the theme will require two more things:
-
-- `screenshot.png`: a screenshot of the theme in action with a max size of around 2000x1000
-- `README.md`: a thorough README explaining how to use the theme and any other information
-of importance
-
-The first step is to make sure that the theme meets the following three requirements:
+of this site, make sure that the theme meets the following three requirements:
- have a `screenshot.png` of the theme in action with a max size of around 2000x1000
- have a thorough `README.md` explaining how to use the theme and any other information
diff --git a/docs/content/themes/DeepThought/index.md b/docs/content/themes/DeepThought/index.md
index dc9f0d340e..bf3bde3643 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/RatanShreshtha/DeepThought.git"
homepage = "https://github.com/RatanShreshtha/DeepThought"
minimum_version = "0.14.1"
diff --git a/docs/content/themes/Ergo/index.md b/docs/content/themes/Ergo/index.md
index 81f4de816c..9ebdcf94e4 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/insipx/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 ec9bdb5519..8df0d7ad10 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/Worble/Zulma.git"
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
index 3096f4bded..7a4917e412 100644
--- a/docs/content/themes/abridge/index.md
+++ b/docs/content/themes/abridge/index.md
@@ -3,11 +3,11 @@
title = "abridge"
description = "A fast and lightweight Zola theme using semantic html, a class-light abridge.css, and No JS."
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/Jieiku/abridge.git"
homepage = "https://github.com/jieiku/abridge/"
minimum_version = "0.16.0"
diff --git a/docs/content/themes/adidoks/index.md b/docs/content/themes/adidoks/index.md
index 1e80a4ac0b..d990bd87a8 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/aaranxu/adidoks.git"
homepage = "https://github.com/aaranxu/adidoks"
minimum_version = "0.15.0"
diff --git a/docs/content/themes/after-dark/index.md b/docs/content/themes/after-dark/index.md
index 3ee4254c17..0249b8ba89 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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/albatros/index.md b/docs/content/themes/albatros/index.md
new file mode 100644
index 0000000000..d3bf9e4814
--- /dev/null
+++ b/docs/content/themes/albatros/index.md
@@ -0,0 +1,63 @@
+
++++
+title = "Albatros"
+description = "A feature rich theme originally made for Duniter website."
+template = "theme.html"
+date = 2022-12-04T21:40:33+02:00
+
+[extra]
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
+repository = "https://git.42l.fr/HugoTrentesaux/Albatros.git"
+homepage = "https://git.42l.fr/HugoTrentesaux/Albatros"
+minimum_version = "0.16.0"
+license = "AGPL"
+demo = "https://duniter.org/"
+
+[extra.author]
+name = "Hugo Trentesuas"
+homepage = "https://trentesaux.fr/"
++++
+
+# Albatros theme for Zola
+
+This theme was made for [Duniter](https://duniter.fr/) website. It was then abstracted and turned into **Albatros**.
+
+![screenshot](./screenshot.png)
+
+## Installation
+
+Add the theme as a git submodule:
+
+```bash
+git submodule add --name albatros https://git.42l.fr/HugoTrentesaux/albatros.git themes/albatros
+```
+
+and enable the theme in your `config.toml`
+
+theme = "albatros"
+
+## Features
+
+It has a lot of feature that I could not find time to document yet. Most of the available customization is in `theme.toml`/`extra` section and `sass/_albatros.sass` file (e.g. for colors).
+
+See:
+
+- https://duniter.fr/
+- https://duniter.org/
+
+for reference.
+
+### Landing pages
+
+You are encouraged to provide custom landing pages that you can write in `template/custom`.
+The theme will take care of the rest (pages organised as wiki with breadcrumb).
+
+### Authors
+
+Each author must have a card in `content/team` folder.
+
+## Support
+
+I'll provide support on demand on [Zola forum](https://zola.discourse.group/) by documenting the theme step by step.
+
\ No newline at end of file
diff --git a/docs/content/themes/albatros/screenshot.png b/docs/content/themes/albatros/screenshot.png
new file mode 100644
index 0000000000..33a6d22277
Binary files /dev/null and b/docs/content/themes/albatros/screenshot.png differ
diff --git a/docs/content/themes/anatole-zola/index.md b/docs/content/themes/anatole-zola/index.md
index cce9f32a37..a51f541417 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 67cdfa18ed..807afbe0f2 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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/apollo/index.md b/docs/content/themes/apollo/index.md
index 07406198e6..f2d10cf827 100644
--- a/docs/content/themes/apollo/index.md
+++ b/docs/content/themes/apollo/index.md
@@ -3,11 +3,11 @@
title = "apollo"
description = "Modern and minimalistic blog theme"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/not-matthias/apollo.git"
homepage = "https://github.com/not-matthias/apollo"
minimum_version = "0.14.0"
diff --git a/docs/content/themes/archie-zola/index.md b/docs/content/themes/archie-zola/index.md
index f29467d90e..eb951e0f3b 100644
--- a/docs/content/themes/archie-zola/index.md
+++ b/docs/content/themes/archie-zola/index.md
@@ -3,11 +3,11 @@
title = "archie-zola"
description = "A zola theme based on Hugo archie."
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/XXXMrG/archie-zola.git"
homepage = "https://github.com/XXXMrG/archie-zola"
minimum_version = "0.14.0"
diff --git a/docs/content/themes/ataraxia-zola/index.md b/docs/content/themes/ataraxia-zola/index.md
index f64737a685..d57c994d8f 100644
--- a/docs/content/themes/ataraxia-zola/index.md
+++ b/docs/content/themes/ataraxia-zola/index.md
@@ -3,11 +3,11 @@
title = "ataraxia"
description = "A personal theme focused on ease of reading"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/gersonbdev/ataraxia-zola"
homepage = "https://github.com/gersonbdev/ataraxia-zola"
minimum_version = "0.16.0"
diff --git a/docs/content/themes/blow/index.md b/docs/content/themes/blow/index.md
index 08487334da..56f46bfb01 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 97664bb83b..4e6dcfe6bc 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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/boring/index.md b/docs/content/themes/boring/index.md
new file mode 100644
index 0000000000..4f8a52c822
--- /dev/null
+++ b/docs/content/themes/boring/index.md
@@ -0,0 +1,57 @@
+
++++
+title = "boring"
+description = "A minimal theme"
+template = "theme.html"
+date = 2022-12-04T21:40:33+02:00
+
+[extra]
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
+repository = "https://github.com/ssiyad/boring.git"
+homepage = "https://github.com/ssiyad/boring"
+minimum_version = "0.16.0"
+license = "GPLv3"
+demo = ""
+
+[extra.author]
+name = "Sabu Siyad"
+homepage = "https://ssiyad.com"
++++
+
+# Boring
+Minimal theme for [Zola](https://www.getzola.org/), powered by
+[TailwindCSS](https://tailwindcss.com/)
+
+### Demo
+https://boring-zola.netlify.app/
+
+![sreenshot](./screenshot.png)
+
+### Setup
+In your zola site directory
+- Get theme
+
+ ```shell
+ git submodule add https://github.com/ssiyad/boring themes/boring
+ ```
+
+- Build CSS
+
+ ```shell
+ cd themes/boring
+ yarn install --frozen-lockfile
+ yarn build
+ ```
+
+- Change theme specific variables. They are listed in `extra` section of
+ [config.toml](./config.toml)
+
+Refer [Zola Docs](https://www.getzola.org/documentation/themes/installing-and-using-themes/#using-a-theme)
+for further instructions
+
+### License
+[GPLv3](./LICENSE)
+
+
+
\ No newline at end of file
diff --git a/docs/content/themes/boring/screenshot.png b/docs/content/themes/boring/screenshot.png
new file mode 100644
index 0000000000..320341fe69
Binary files /dev/null and b/docs/content/themes/boring/screenshot.png differ
diff --git a/docs/content/themes/clean-blog/index.md b/docs/content/themes/clean-blog/index.md
index 320720a7ec..24e38659f0 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/dave-tucker/zola-clean-blog.git"
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 7780a5e8ba..0c9a5e52e1 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/svavs/codinfox-zola.git"
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 d115dba4dc..7790b93a3e 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "git://git.figbert.com/d3c3nt.git"
homepage = "https://git.figbert.com/d3c3nt/"
minimum_version = "0.15.0"
diff --git a/docs/content/themes/dinkleberg/index.md b/docs/content/themes/dinkleberg/index.md
index 65de96b43a..e4d5178edd 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 e1d7ea7b90..945bbd5be6 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 f3fc976581..00fecae9cc 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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/emily/index.md b/docs/content/themes/emily/index.md
index a7e85d42bf..345794ac3e 100644
--- a/docs/content/themes/emily/index.md
+++ b/docs/content/themes/emily/index.md
@@ -3,11 +3,11 @@
title = "emily_zola_theme"
description = "a KISS theme for Zola"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/kyoheiu/emily_zola_theme.git"
homepage = "https://github.com/kyoheiu/emily_zola_theme"
minimum_version = "0.14.1"
diff --git a/docs/content/themes/even/index.md b/docs/content/themes/even/index.md
index 74f5e7f780..ca15ca281a 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 0726218d2f..7930c9d634 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/piedoom/feather.git"
homepage = "https://github.com/piedoom/feather"
minimum_version = "0.11.0"
diff --git a/docs/content/themes/float/index.md b/docs/content/themes/float/index.md
index 7038b0918d..92a303d4a6 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://gitlab.com/float-theme/float.git"
homepage = "https://float-theme.netlify.app/"
minimum_version = "0.15.3"
diff --git a/docs/content/themes/hallo/index.md b/docs/content/themes/hallo/index.md
index f0976fb48c..28af0b0c78 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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/hephaestus/index.md b/docs/content/themes/hephaestus/index.md
index 0d8492989d..2042b2b558 100644
--- a/docs/content/themes/hephaestus/index.md
+++ b/docs/content/themes/hephaestus/index.md
@@ -3,11 +3,11 @@
title = "hephaestus"
description = "A portfolio theme"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/BConquest/hephaestus.git"
homepage = "https://github.com/BConquest/hephaestus"
minimum_version = "0.4.0"
diff --git a/docs/content/themes/hermit/index.md b/docs/content/themes/hermit/index.md
index 845bafb25e..6de805783e 100644
--- a/docs/content/themes/hermit/index.md
+++ b/docs/content/themes/hermit/index.md
@@ -3,11 +3,11 @@
title = "Hermit_Zola"
description = "Minimal Zola theme"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/VersBinarii/hermit_zola.git"
homepage = "https://github.com/VersBinarii/hermit_zola"
minimum_version = "0.4.0"
diff --git a/docs/content/themes/hook/index.md b/docs/content/themes/hook/index.md
index 0714581b65..395b8d465a 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 b2ab9cc911..6b35fc4ae4 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 5e59050150..f9d510bb45 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/huhu/juice.git"
homepage = "https://github.com/huhu/juice"
minimum_version = "0.11.0"
diff --git a/docs/content/themes/kangae/index.md b/docs/content/themes/kangae/index.md
index 1aad903664..0b74f98671 100644
--- a/docs/content/themes/kangae/index.md
+++ b/docs/content/themes/kangae/index.md
@@ -3,11 +3,11 @@
title = "kangae"
description = "a lightweight microblog theme for zola"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/ayushnix/kangae.git"
homepage = "https://github.com/ayushnix/kangae"
minimum_version = "0.15.0"
diff --git a/docs/content/themes/karzok/index.md b/docs/content/themes/karzok/index.md
index 157a662c28..42f7690f94 100644
--- a/docs/content/themes/karzok/index.md
+++ b/docs/content/themes/karzok/index.md
@@ -3,11 +3,11 @@
title = "karzok"
description = "The theme for launching fast documentation sites"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/kogeletey/karzok.git"
homepage = "https://github.com/kogeletey/karzok"
minimum_version = "0.15.0"
diff --git a/docs/content/themes/kodama-theme/index.md b/docs/content/themes/kodama-theme/index.md
index 7ac0dd2833..5099fa1853 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/adfaure/kodama-theme.git"
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 9c8979421d..fc71d4d793 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/carpetscheme/lightspeed.git"
homepage = "https://github.com/carpetscheme/lightspeed"
minimum_version = "0.10.0"
diff --git a/docs/content/themes/nasm-theme/index.md b/docs/content/themes/nasm-theme/index.md
index 4213696e6f..99202bab64 100644
--- a/docs/content/themes/nasm-theme/index.md
+++ b/docs/content/themes/nasm-theme/index.md
@@ -3,11 +3,11 @@
title = "nasm-theme"
description = "A robust, elegant blue theme"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/lucasnasm/nasm-theme.git"
homepage = "https://github.com/lucasnasm/nasm-theme"
minimum_version = "0.1.0"
diff --git a/docs/content/themes/no-style-please/index.md b/docs/content/themes/no-style-please/index.md
new file mode 100644
index 0000000000..611d099556
--- /dev/null
+++ b/docs/content/themes/no-style-please/index.md
@@ -0,0 +1,98 @@
+
++++
+title = "no style, please!"
+description = "A (nearly) no-CSS, fast, minimalist Zola theme"
+template = "theme.html"
+date = 2022-12-04T21:40:33+02:00
+
+[extra]
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
+repository = "https://gitlab.com/4bcx/no-style-please.git"
+homepage = "https://gitlab.com/4bcx/no-style-please"
+minimum_version = "0.4.0"
+license = "MIT"
+demo = "https://4bcx.gitlab.io/no-style-please"
+
+[extra.author]
+name = "Ahmed Alaa"
+homepage = "https://4b.cx"
++++
+
+# no style, please!
+
+A (nearly) no-CSS, fast, minimalist [Zola](https://www.getzola.org/) theme.
+Ported from from [riggraz](https://riggraz.dev/)'s [no style, please! Jekyll theme](https://riggraz.dev/no-style-please/), and I use it for [my site](https://4b.cx/)
+
+![screenshot](./screenshot.png)
+
+## Installation
+
+First download this theme to your `themes` directory:
+
+```bash
+cd themes
+git clone https://gitlab.com/4bcx/no-style-please.git
+```
+
+and then enable it in your `config.toml`:
+
+```toml
+theme = "no-style-please"
+```
+
+## Options
+
+### Pages list in homepage
+
+To enable listing of pages in homepage add the following in `content\_index.md` frontmatter
+
+```toml
+[exta]
+list_pages = false
+```
+
+### Extra data
+
+- `author` can be set in both main config and in pages metadata
+- `image` variable can be used in pages to add an image to HTML `` tags
+- Same for `logo` in main config, except this one is also used as the site icon
+
+### Horizontal rule shortcode `hr()`
+
+Adds the option to insert text in the thematic break
+
+```html
+{{/* hr(data_content="footnotes") */}}
+```
+
+is rendered
+
+![thematic break screenshot](./hr_footnotes.png)
+
+### Invertable image `iimg()`
+
+Images are not inverted in darkmode by default. To add an invertable image use the following
+
+```html
+{{/* iimg(src="logo.png", alt="alt text") */}}
+```
+
+In light mode
+
+![image in light mode](./iimg_light.png)
+
+In dark mode
+
+![image in dark mode](./iimg_dark.png)
+
+## TODO
+
+- [ ] Add RTL support
+- [ ] Write proper test pages
+
+## License
+
+The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
+
+
\ No newline at end of file
diff --git a/docs/content/themes/no-style-please/screenshot.png b/docs/content/themes/no-style-please/screenshot.png
new file mode 100644
index 0000000000..7420fa5cc3
Binary files /dev/null and b/docs/content/themes/no-style-please/screenshot.png differ
diff --git a/docs/content/themes/ntun/index.md b/docs/content/themes/ntun/index.md
index 5b8afb95e0..bf1d492584 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/Netoun/ntun.git"
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 5fc08f06e6..1107b15917 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 6688652754..a2d21ec84e 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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/particle/index.md b/docs/content/themes/particle/index.md
index e2ecadb496..f7ca6e5638 100644
--- a/docs/content/themes/particle/index.md
+++ b/docs/content/themes/particle/index.md
@@ -3,11 +3,11 @@
title = "particle"
description = "Particle theme for Zola"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/svavs/particle-zola.git"
homepage = "https://github.com/svavs/particle"
minimum_version = "0.11.0"
diff --git a/docs/content/themes/resume/index.md b/docs/content/themes/resume/index.md
index 7597842400..7cc4f0113a 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 2304d2d778..328a0d958a 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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/seje2/index.md b/docs/content/themes/seje2/index.md
index 52aba82e52..bf2df65150 100644
--- a/docs/content/themes/seje2/index.md
+++ b/docs/content/themes/seje2/index.md
@@ -3,11 +3,11 @@
title = "Seje2"
description = "A beautiful zola theme"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/eatradish/seje2"
homepage = "https://github.com/eatradish/Seje2"
minimum_version = "0.15.0"
diff --git a/docs/content/themes/serene/index.md b/docs/content/themes/serene/index.md
index a68063c818..e6bff93bf8 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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/shadharon/index.md b/docs/content/themes/shadharon/index.md
new file mode 100644
index 0000000000..457dbe8603
--- /dev/null
+++ b/docs/content/themes/shadharon/index.md
@@ -0,0 +1,76 @@
+
++++
+title = "shadharon"
+description = "Simple blog theme powered by Zola"
+template = "theme.html"
+date = 2022-12-04T21:40:33+02:00
+
+[extra]
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
+repository = "https://github.com/syedzayyan/shadharon"
+homepage = "https://github.com/syedzayyan/shadharon"
+minimum_version = "0.4.0"
+license = "MIT"
+demo = "https://syedzayyan.github.io/shadharon"
+
+[extra.author]
+name = "Syed Zayyan Masud"
+homepage = "https://syedzayyan.com"
++++
+
+# Shadharon
+
+Simple blog theme powered by [Zola](getzola.org). See a live preview [here](https://syedzayyan.github.io/shadharon).
+
+> Name derived from the Bengali Word - সাধারণ which translates to "generic"
+
+
+ Dark theme
+
+ ![blog-dark](https://raw.githubusercontent.com/syedzayyan/shadharon/main/screenshot.png)
+
+
+
+ Light theme
+
+ ![light-dark](https://raw.githubusercontent.com/syedzayyan/shadharon/main/screenshot-light.png)
+
+
+## Features
+
+- [X] Themes (light, dark). Default theme is dark with a switcher in the navbar
+- [X] Projects page
+- [x] Social Links
+- [x] Tags
+
+## Installation
+
+0. Initialize Git Repo if not initialized
+
+1. Download the theme
+```
+git submodule add https://github.com/syedzayyan/shadharon themes/shadharon
+```
+
+2. Add `theme = "shadharon"` to your `config.toml`
+
+3. Copy the example content
+
+```
+cp -R themes/shadharon/content/. content
+```
+4. For customization refer to config.toml files, which has comments.
+
+5. For customizing the banner on the homepage the content/posts/_index.md needs modification. The desc variable under `extra`, specifically. You could delete this as well to remove banner. For an about page or any aditional page an .md file in the "content" directory will do.
+
+## Options
+These filenames are relative to the root of the site. In this example, the two CSS files would be in the `static` folder.
+
+## References
+
+This theme is takes inspiration from
+- [apollo](https://github.com/not-matthias/apollo).
+- [Tania's Website](https://tania.dev/)
+- [Anpu Zola Theme](https://github.com/zbrox/anpu-zola-theme)
+
\ No newline at end of file
diff --git a/docs/content/themes/shadharon/screenshot.png b/docs/content/themes/shadharon/screenshot.png
new file mode 100644
index 0000000000..5784057e65
Binary files /dev/null and b/docs/content/themes/shadharon/screenshot.png differ
diff --git a/docs/content/themes/simple-dev-blog/index.md b/docs/content/themes/simple-dev-blog/index.md
index ace8de8002..1b30a55a45 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/bennetthardwick/simple-dev-blog-zola-starter.git"
homepage = "https://github.com/bennetthardwick/simple-dev-blog-zola-starter"
minimum_version = "0.4.0"
diff --git a/docs/content/themes/slim/index.md b/docs/content/themes/slim/index.md
index da895b1ee3..897471eba9 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/jameshclrk/zola-slim.git"
homepage = "https://github.com/jameshclrk/zola-slim"
minimum_version = "0.8.0"
diff --git a/docs/content/themes/soapstone/index.md b/docs/content/themes/soapstone/index.md
index dc92a63821..842269f1af 100644
--- a/docs/content/themes/soapstone/index.md
+++ b/docs/content/themes/soapstone/index.md
@@ -3,11 +3,11 @@
title = "Soapstone"
description = "A bare bones dark theme with some color tweakability"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/MattyRad/soapstone.git"
homepage = "https://github.com/MattyRad/soapstone"
minimum_version = "0.4.0"
diff --git a/docs/content/themes/solar-theme-zola/index.md b/docs/content/themes/solar-theme-zola/index.md
index 2ab1f8756a..ecb4b5ffbb 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 299b1e56b9..1393f6c15e 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 98ba516cbc..53da987e75 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 d7abf2f296..f0677a84f9 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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/zhuia/index.md b/docs/content/themes/zhuia/index.md
index 4f7a8d5139..acc1655bc2 100644
--- a/docs/content/themes/zhuia/index.md
+++ b/docs/content/themes/zhuia/index.md
@@ -3,11 +3,11 @@
title = "Zhuia"
description = "An elegant but still playful theme for Zola."
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/gicrisf/zhuia.git"
homepage = "https://github.com/gicrisf/zhuia"
minimum_version = "0.15.0"
diff --git a/docs/content/themes/zola-henry/index.md b/docs/content/themes/zola-henry/index.md
index 493a74d4cf..3aaebb2957 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/sirodoht/zola-henry.git"
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 465b06b26b..9e7aae67cd 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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 113c455bb6..274fb6bc27 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02: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-course/index.md b/docs/content/themes/zola-theme-course/index.md
index 212c8a4b0a..dea1b3c6f4 100644
--- a/docs/content/themes/zola-theme-course/index.md
+++ b/docs/content/themes/zola-theme-course/index.md
@@ -3,11 +3,11 @@
title = "Course"
description = "A zola theme designed for online courses or tutorials"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/elegaanz/zola-theme-course.git"
homepage = "https://github.com/elegaanz/zola-theme-course"
minimum_version = "0.15.0"
diff --git a/docs/content/themes/zola-theme-hikari/index.md b/docs/content/themes/zola-theme-hikari/index.md
index ee70f8fec7..5c9aebf6bf 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/waynee95/zola-theme-hikari.git"
homepage = "https://github.com/waynee95/zola-theme-hikari"
minimum_version = "0.5.1"
diff --git a/docs/content/themes/zola-theme-terminimal/index.md b/docs/content/themes/zola-theme-terminimal/index.md
index 65f731f075..59ffdde536 100644
--- a/docs/content/themes/zola-theme-terminimal/index.md
+++ b/docs/content/themes/zola-theme-terminimal/index.md
@@ -3,11 +3,11 @@
title = "terminimal"
description = "A simple, minimal retro theme"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/pawroman/zola-theme-terminimal.git"
homepage = "https://github.com/pawroman/zola-theme-terminimal"
minimum_version = "0.11.0"
diff --git a/docs/content/themes/zola.386/index.md b/docs/content/themes/zola.386/index.md
index 5d8f5b4297..4e9d871a14 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/lopes/zola.386.git"
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 f3780991a3..8c6cf058b7 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-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/codeandmedia/zola_easydocs_theme.git"
homepage = "https://github.com/codeandmedia/zola_easydocs_theme"
minimum_version = "0.13.0"
diff --git a/docs/content/themes/zolastrap/index.md b/docs/content/themes/zolastrap/index.md
index 507141a730..5d4f57e751 100644
--- a/docs/content/themes/zolastrap/index.md
+++ b/docs/content/themes/zolastrap/index.md
@@ -3,11 +3,11 @@
title = "zolastrap"
description = "A bootstrap theme for zola"
template = "theme.html"
-date = 2022-08-16T14:32:26-05:00
+date = 2022-12-04T21:40:33+02:00
[extra]
-created = 2022-08-16T14:32:26-05:00
-updated = 2022-08-16T14:32:26-05:00
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
repository = "https://github.com/marcodpt/zolastrap.git"
homepage = "https://github.com/marcodpt/zolastrap"
minimum_version = "0.14.1"
diff --git a/docs/content/themes/zplit/index.md b/docs/content/themes/zplit/index.md
new file mode 100644
index 0000000000..504c365772
--- /dev/null
+++ b/docs/content/themes/zplit/index.md
@@ -0,0 +1,162 @@
+
++++
+title = "Zplit"
+description = "A single page theme for a professional online presence."
+template = "theme.html"
+date = 2022-12-04T21:40:33+02:00
+
+[extra]
+created = 2022-12-04T21:40:33+02:00
+updated = 2022-12-04T21:40:33+02:00
+repository = "https://github.com/gicrisf/zplit"
+homepage = "https://github.com/gicrisf/zplit"
+minimum_version = "0.15.0"
+license = "Creative Commons Attribution 3.0 License"
+demo = "https://zplit.netlify.app"
+
+[extra.author]
+name = "Giovanni Crisalfi"
+homepage = "https://github.com/gicrisf"
++++
+
+# Zplit
+
+Zplit is a single page, centrally-divided layout for a professional online presence with a big image or video left with alongside content. It is a port of [Split](//onepagelove.com/split) by [One Page Love](//onepagelove.com) for [Zola](https://www.getzola.org/).
+
+![Zola Zplit Theme screenshot](screenshot.png)
+
+**DEMO**: [https://zplit.netlify.app/](https://zplit.netlify.app/)
+
+## Installation
+
+Download this theme to your `themes` directory:
+
+```bash
+$ cd themes
+$ git clone https://github.com/gicrisf/zplit.git
+```
+
+Then, enable the theme editing your `config.toml`:
+
+```toml
+theme = "zhuia"
+```
+
+## Getting started
+
+You can find the most important file of the theme in the root directory. It's called `config.toml`.
+Edit it, specifying your personal preferences. Go through this (small) file to set some self-explaining variable, such as `author` under `[extra]` or `intro_tagline` under `[extra.content]`.
+
+If something appears not that evident, maybe you missed the ["configuration" paragraph of the Zola official documentation](https://www.getzola.org/documentation/getting-started/configuration/). Even if this is your first time with a static site generator, don't be scared and go through the docs, because it's very basic stuff.
+
+Here, we'll see in more detail two more section, that are peculiar for this theme:
+- Background image
+- Lists (of links)
+
+### Background image
+
+Edit the `[extra.visual]` section to set your background image of choice.
+
+```toml
+[extra.visual]
+
+background = ""
+```
+
+You can find this example already written as the default:
+
+```toml
+[extra.visual]
+
+background = "images/background.jpg"
+position = "center center"
+```
+
+As you can see, you can edit the relative position of the image, which is centered by default.
+
+### Lists
+
+You can set up to 3 lists of links in the `[extra.lists]` section of the `config.toml` file:
+- connect
+- social
+- network
+
+Manipulating them is very easy: just add/remove elements in the TOML list, as showed in this example (also already present in the default file):
+
+``` toml
+social = [
+ {url = "https://t.me/zwitterio", text = "Telegram"},
+ {url = "https://twitter.com/gicrisf", text = "Twitter"},
+ {url = "https://github.com/gicrisf", text = "Github"},
+]
+```
+
+Do you want another item? Just throw it up to the pile. You have no limits.
+Remember to set the `url` field with the link itself you want to direct your user at and a `text` to show in the page for the corrisponding URL.
+
+## Posts
+
+You could add new posts, by adding markdown files to the `content` directory.
+To sort the post index by date, enable sort in your index section `content/_index.md`:
+
+```toml
+sort_by = "date"
+```
+
+Showing the posts in the main page could need some tweaking of the code, because it's not an officially supported feature.
+
+## Custom CSS
+
+Add a `custom.css` file in `static` directory and add all the changes you want to the original stylesheets.
+
+## Custom colors
+
+If you want to tweak the colors or grid dimensions, though, it could be easier to directly edit the `_01-content.scss` file frontmatter, where the variables are easily exposed at the top of the file:
+
+``` scss
+//-------------------------------------------------------------------------------
+// Variables
+//-------------------------------------------------------------------------------
+
+// Colors
+$color-background : #061C30;
+$color-text : #848d96;
+$color-link : #848d96;
+$color-link-hover : #CA486d;
+$color-maverick : #47bec7;
+$color-tagline : #CCCCCC;
+
+// Breakpoints
+$bp-smallish : 1200px;
+$bp-tablet : 800px;
+$bp-mobile : 500px;
+```
+
+If you choose this way, you don't have to care about anything else in that file. Just look at the variables.
+
+## Features
+
+- [x] Lightweight and minimal
+- [x] Responsive (mobile support)
+- [x] Social links
+- [x] Deploy via Netlify (config already included)
+- [x] Easily extendable menus
+- [x] De-googled (local assets are faster and more secure)
+- [x] Netlify support
+- [x] Custom CSS
+- [x] Custom colors
+- [x] 404 page
+- [ ] Open Graph and Twitter Cards support
+- [ ] Multilanguage support
+
+## Support me!
+
+Do you love this theme? Was it useful to you? Make a donation and support new features!
+
+[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/V7V425BFU)
+
+## License
+
+The original template is released under the [Creative Commons Attribution 3.0 License](//github.com/escalate/hugo-split-theme/blob/master/LICENSE.md). Please keep the original attribution link when using for your own project. If you'd like to use the template without the attribution, you can check out the license option via the template [author's website](//onepagelove.com/split).
+
+
\ No newline at end of file
diff --git a/docs/content/themes/zplit/screenshot.png b/docs/content/themes/zplit/screenshot.png
new file mode 100644
index 0000000000..27cef891d4
Binary files /dev/null and b/docs/content/themes/zplit/screenshot.png differ