Compare commits

..

6 commits

Author SHA1 Message Date
Jan Christian Grünhage 3c56f7a723 feat: add katex support 2021-08-13 11:51:20 +02:00
Jan Christian Gr??nhage 5f31463079 generate summary if it isn't present 2021-08-13 11:51:20 +02:00
Jan Christian Gr??nhage 71a75c7795 render content on landing page 2021-08-13 11:51:20 +02:00
Vincent Prouillet 33def459cc Update for newer Zola 2021-02-18 22:18:03 +01:00
Vincent Prouillet 9f1cc6cace
Merge pull request #23 from Bobo1239/master
Remove empty space at the bottom of code blocks
2020-10-01 17:01:53 +02:00
Boris-Chengbiao Zhou bb6b6e0022 Remove empty space at the bottom of code blocks 2020-10-01 02:06:18 +02:00
3 changed files with 7 additions and 7 deletions

View file

@ -13,8 +13,8 @@
First download this theme to your `themes` directory:
```bash
$ cd themes
$ git clone https://github.com/getzola/after-dark.git
cd themes
git clone https://github.com/getzola/after-dark.git
```
and then enable it in your `config.toml`:
@ -35,8 +35,8 @@ The theme requires tags and categories taxonomies to be enabled in your `config.
```toml
taxonomies = [
# You can enable/disable RSS
{name = "categories", rss = true},
{name = "tags", rss = true},
{name = "categories", feed = true},
{name = "tags", feed = true},
]
```
If you want to paginate taxonomies pages, you will need to overwrite the templates

View file

@ -5,8 +5,8 @@ description = ""
generate_feed = true
taxonomies = [
{name = "categories", rss = true},
{name = "tags", rss = true},
{name = "categories", feed = true},
{name = "tags", feed = true},
]
[extra]

View file

@ -298,7 +298,7 @@ a:hover {
}
.hack pre code:after, .hack pre code:before {
content: ''
content: none
}
.hack code {