Skip to content

Commit 50d092f

Browse files
Keatsactions-user
andauthored
Update themes gallery (#1082)
Co-authored-by: GitHub Action <[email protected]>
1 parent 47bd7c9 commit 50d092f

File tree

29 files changed

+699
-74
lines changed

29 files changed

+699
-74
lines changed

docs/content/themes/Ergo/index.md

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,25 @@
33
title = "Ergo"
44
description = "A simple blog Theme focused on writing, inspired by svbtle"
55
template = "theme.html"
6-
date = 2018-09-03T02:13:01-04:00
6+
date = 2020-07-08T12:08:02+02:00
77

88
[extra]
9-
created = 2019-07-12T23:49:55+02:00
10-
updated = 2018-09-03T02:13:01-04:00
11-
repository = "https://github.com/InsidiousMind/Ergo"
12-
homepage = "https://github.com/InsidiousMind/Ergo"
9+
created = 2020-07-08T12:08:02+02:00
10+
updated = 2020-07-08T12:08:02+02:00
11+
repository = "https://github.com/InsidiousMind/Ergo.git"
12+
homepage = "https://github.com/insipx/Ergo"
1313
minimum_version = "0.4.1"
1414
license = "MIT"
1515
demo = "https://ergo.liquidthink.net"
1616

1717
[extra.author]
1818
name = "Andrew Plaza"
19-
homepage = "https://code.liquidthink.net"
19+
homepage = "https://liquidthink.net"
2020
+++
2121

22-
[ergo](http://ergo.liquidthink.net)
22+
[ergo LIVE DEMO](http://ergo.liquidthink.net)
23+
24+
2325

2426
![Ergo Screenshot](https://i.imgur.com/l182IYg.jpg)
2527

@@ -59,6 +61,9 @@ Change them however you like! Feel free to go into theme and edit the colors. Ho
5961
# and update your config.toml accordingly
6062
profile = 'profile.svg'
6163

64+
# Description. This is needed for SEO/site metadata purposes
65+
description = "Simple blog theme focused on writing, inspired by svbtle"
66+
6267
# website, should not be preceded with `http://`
6368
website = "code.liquidthink.net"
6469

@@ -70,6 +75,12 @@ twitter = "liquid_think"
7075
email = "${MY_EMAIL}@cool_domain.com"
7176
# instagram
7277
instagram = "${your_insta}"
78+
# keybase
79+
keybase = "${your_keybase}"
80+
# linkedin
81+
linkedin = "${your_linkedin}"
82+
# reddit
83+
reddit = "${your_reddit}"
7384
# youtube
7485
youtube = "${your_youtube_channel_id}"
7586
# if any social networks are missing from this list that you want added, open an issue. I will add it for you ASAP

docs/content/themes/Zulma/index.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
title = "Zulma"
44
description = "A zola theme based off bulma.css"
55
template = "theme.html"
6-
date = 2019-05-12T22:44:07+01:00
6+
date = 2020-07-08T12:08:02+02:00
77

88
[extra]
9-
created = 2019-07-12T23:55:11+02:00
10-
updated = 2019-05-12T22:44:07+01:00
9+
created = 2020-07-08T12:08:02+02:00
10+
updated = 2020-07-08T12:08:02+02:00
1111
repository = "https://github.com/Worble/Zulma"
1212
homepage = "https://github.com/Worble/Zulma"
1313
minimum_version = "0.6.0"
@@ -56,7 +56,7 @@ git clone https://github.com/Worble/Zulma
5656
and then enable it in your `config.toml`:
5757

5858
```toml
59-
theme = "zulma"
59+
theme = "Zulma"
6060
```
6161

6262
That's it! No more configuration should be required, however it might look a little basic. Head to the [Options](#options) section to see what you can set for more customizability.
@@ -73,14 +73,18 @@ All the source javascript files live in `javascript/src`. Following is a list of
7373

7474
### Building
7575

76-
The javascript files are transpiled by babel, minified by webpack, sourcemaps are generated and then everything placed in `static/js`. The repo already contains the transpiled and minified files along with their corrosponding sourcemaps so you don't need to do anything to use these. If you would prefer to build it yourself, feel free to inspect the js files and then run the build process yourself (please ensure that you have [node, npm](https://nodejs.org/en/) and optionally [yarn](https://yarnpkg.com/lang/en/) installed):
76+
The JavaScript files are transpiled by babel, minified by webpack, sourcemaps are generated and then everything placed in `static/js`. The repo already contains the transpiled and minified files along with their corrosponding sourcemaps so you don't need to do anything to use these. If you would prefer to build it yourself, feel free to inspect the js files and then run the build process (please ensure that you have [node, npm](https://nodejs.org/en/) and optionally [yarn](https://yarnpkg.com/lang/en/) installed):
7777

7878
```bash
7979
cd javascript
8080
yarn
8181
yarn webpack
8282
```
8383

84+
### Github warnings
85+
86+
You may get warnings about vulnerabilities from the JavaScript dependencies. These shouldn't be an issue since we only have dev-dependencies and none of the them reach the end-user, but if you don't want to run the buld process yourself, and to stop Github pestering you about security warnings, feel free to delete the top level `javascript` folder when committing.
87+
8488
## Options
8589

8690
### Pagination
@@ -100,8 +104,8 @@ Zulma has 3 taxonomies already set internally: `tags`, `cateogories` and `author
100104
```toml
101105
taxonomies = [
102106
{name = "categories"},
103-
{name = "tags", paginate_by = 5, feed = true},
104-
{name = "authors", feed = true},
107+
{name = "tags", paginate_by = 5, rss = true},
108+
{name = "authors", rss = true},
105109
]
106110
```
107111

@@ -231,7 +235,7 @@ zulma_allow_theme_selection = true
231235

232236
## Original
233237

234-
This template is based on the [blog template](https://dansup.github.io/bulma-templates/templates/blog.html) over at [Free Bulma Templates](https://dansup.github.io/bulma-templates/). All themes were taken from [Bulmaswatch](https://jenil.github.io/bulmaswatch/). The code behind from originally adapted from the [after-dark](https://github.com/getzola/after-dark/blob/master/README.md) zola template.
238+
This template is based on the [blog template](https://bulmatemplates.github.io/bulma-templates/templates/blog.html) over at [Free Bulma Templates](https://bulmatemplates.github.io/bulma-templates/). All themes were taken from [Bulmaswatch](https://jenil.github.io/bulmaswatch/). The code behind from originally adapted from the [after-dark](https://github.com/getzola/after-dark/blob/master/README.md) zola template.
235239

236240
## Known Bugs
237241

docs/content/themes/after-dark/index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
title = "after-dark"
44
description = "A robust, elegant dark theme"
55
template = "theme.html"
6-
date = 2017-11-07T17:39:37+01:00
6+
date = 2020-07-08T12:08:02+02:00
77

88
[extra]
9-
created = 2019-04-06T11:27:43+02:00
10-
updated = 2017-11-07T17:39:37+01:00
11-
repository = "https://github.com/getzola/after-dark"
9+
created = 2020-07-08T12:08:02+02:00
10+
updated = 2020-07-08T12:08:02+02:00
11+
repository = "https://github.com/getzola/after-dark.git"
1212
homepage = "https://github.com/getzola/after-dark"
13-
minimum_version = "0.5.0"
13+
minimum_version = "0.11.0"
1414
license = "MIT"
1515
demo = "https://zola-after-dark.netlify.com"
1616

@@ -55,9 +55,9 @@ The theme requires tags and categories taxonomies to be enabled in your `config.
5555

5656
```toml
5757
taxonomies = [
58-
# You can enable/disable feeds
59-
{name = "categories", feed = true},
60-
{name = "tags", feed = true},
58+
# You can enable/disable RSS
59+
{name = "categories", rss = true},
60+
{name = "tags", rss = true},
6161
]
6262
```
6363
If you want to paginate taxonomies pages, you will need to overwrite the templates

docs/content/themes/anpu/index.md

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
2+
+++
3+
title = "Anpu"
4+
description = "A port of the Hugo Anubis theme"
5+
template = "theme.html"
6+
date = 2020-07-08T12:08:02+02:00
7+
8+
[extra]
9+
created = 2020-07-08T12:08:02+02:00
10+
updated = 2020-07-08T12:08:02+02:00
11+
repository = "https://github.com/zbrox/anpu-zola-theme.git"
12+
homepage = "https://github.com/zbrox/anpu-zola-theme"
13+
minimum_version = "0.11.0"
14+
license = "MIT"
15+
demo = "https://anpu-zola-theme.netlify.app"
16+
17+
[extra.author]
18+
name = "Rostislav Raykov"
19+
homepage = "https://zbrox.com"
20+
+++
21+
22+
# Anpu theme for Zola
23+
24+
This is a port of the Hugo theme [Anubis](https://github.com/Mitrichius/hugo-theme-anubis/tree/master/layouts) for [Zola](https://getzola.com).
25+
26+
![screenshot](screenshot.png)
27+
28+
## Usage
29+
30+
In order to use the theme you need to clone this repository in your `themes` folder and set your theme setting in `config.toml` to `anpu`. Like this
31+
32+
```toml
33+
theme = "anpu"
34+
```
35+
36+
This theme requires both the `tags` and `categories` taxonomies.
37+
38+
```toml
39+
taxonomies = [
40+
{ name = "categories" },
41+
{ name = "tags" },
42+
]
43+
```
44+
45+
## How To Customize
46+
47+
There are two things you can customize:
48+
49+
- The links to be included in the menu
50+
- The date format of the posts
51+
52+
### Menu links
53+
54+
In your `config.toml` under the `[extra]` section you need to set the `anpu_menu_links` list.
55+
56+
Example:
57+
58+
```toml
59+
[extra]
60+
anpu_menu_links = [
61+
{ url = "$BASE_URL/about/", name = "About" },
62+
]
63+
```
64+
65+
If you include `$BASE_URL` in the url of a link it will be replaced to the base url of your site.
66+
67+
### Date format
68+
69+
In your `config.toml` under the `[extra]` section you need to set the `anpu_date_format` value.
70+
71+
Example:
72+
73+
```toml
74+
[extra]
75+
anpu_date_format = "%e %B %Y"
76+
```
77+
78+
The formatting uses the standart `date` filter in Tera. The date format options you can use are listed in the [chrono crate documentation](https://tera.netlify.app/docs/#date).
79+
261 KB
Loading

docs/content/themes/book/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
title = "book"
44
description = "A book theme inspired from GitBook/mdBook"
55
template = "theme.html"
6-
date = 2018-01-28T10:53:19+01:00
6+
date = 2020-07-08T12:08:02+02:00
77

88
[extra]
9-
created = 2018-11-17T18:27:11+01:00
10-
updated = 2018-01-28T10:53:19+01:00
11-
repository = "https://github.com/getzola/book"
9+
created = 2020-07-08T12:08:02+02:00
10+
updated = 2020-07-08T12:08:02+02:00
11+
repository = "https://github.com/getzola/book.git"
1212
homepage = "https://github.com/getzola/book"
1313
minimum_version = "0.5.0"
1414
license = "MIT"

docs/content/themes/clean-blog/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
title = "Clean Blog"
44
description = "A port of Start Bootstrap Clean Blog for Zola"
55
template = "theme.html"
6-
date = 2020-01-01T23:06:35+00:00
6+
date = 2020-07-08T12:08:02+02:00
77

88
[extra]
9-
created = 2020-01-01T23:06:35+00:00
10-
updated = 2020-01-01T23:06:35+00:00
9+
created = 2020-07-08T12:08:02+02:00
10+
updated = 2020-07-08T12:08:02+02:00
1111
repository = "https://github.com/dave-tucker/zola-clean-blog"
1212
homepage = "https://github.com/dave-tucker/zola-clean-blog"
1313
minimum_version = "0.4.0"

docs/content/themes/dinkleberg/index.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
title = "dinkleberg"
44
description = "The Rust BR theme for Gutenberg"
55
template = "theme.html"
6-
date = 2018-05-31T23:02:50-03:00
6+
date = 2020-07-08T12:08:02+02:00
77

88
[extra]
9-
created = 2019-04-06T11:27:43+02:00
10-
updated = 2018-05-31T23:02:50-03:00
9+
created = 2020-07-08T12:08:02+02:00
10+
updated = 2020-07-08T12:08:02+02:00
1111
repository = "https://github.com/rust-br/dinkleberg.git"
1212
homepage = "https://github.com/rust-br/dinkleberg"
1313
minimum_version = "0.4.0"
@@ -46,6 +46,7 @@ label_next = "Próxima"
4646
label_previous = "Anterior"
4747
label_page = "Página"
4848
label_of = "de"
49+
label_minutes = "minutos"
4950

5051
og_image="" # Image that will appear on social media
5152
og_alt_image="" # Alt for og_image

docs/content/themes/docsascode-theme/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
title = "Docsascode_theme"
44
description = "A modern simple Zola's theme related to docs as code methodology"
55
template = "theme.html"
6-
date = 2020-03-05T23:16:20+03:00
6+
date = 2020-07-08T12:08:02+02:00
77

88
[extra]
9-
created = 2020-03-05T23:16:20+03:00
10-
updated = 2020-03-05T23:16:20+03:00
9+
created = 2020-07-08T12:08:02+02:00
10+
updated = 2020-07-08T12:08:02+02:00
1111
repository = "https://github.com/codeandmedia/zola_docsascode_theme.git"
1212
homepage = "https://github.com/codeandmedia/zola_docsascode_theme"
1313
minimum_version = "0.10.0"
1414
license = "MIT"
15-
demo = "docsascode.codeandmedia.com"
15+
demo = "https://docsascode.codeandmedia.com"
1616

1717
[extra.author]
1818
name = "Roman Soldatenkov"
@@ -23,10 +23,10 @@ homepage = "https://codeandmedia.com"
2323

2424
I was inspired by [Linode's approach](https://www.linode.com/2020/01/17/docs-as-code-at-linode/) to creating and managing docs. They call it _docs as code methodology._ Thereby my aim was making simple and productive way to work with any sort of documents and articles through Markdown, Git and Docker/k8s optionally.
2525

26-
The repo contains a theme for [Zola](https://www.getzola.org/) (the best static site generator I've ever seen) and dockerfile for building Docker images with Nginx-alpine. You can push to your Docker an [image with demo-content](https://hub.docker.com/r/codeandmedia/zola_docsascode_theme)
26+
The repo contains a theme for [Zola](https://www.getzola.org/) (the best static site generator I've ever seen) and dockerfile for building Docker images with Nginx-alpine. You can pull to your Docker an [image with demo-content](https://hub.docker.com/r/codeandmedia/docsascode-theme)
2727

2828
```
29-
codeandmedia/zola_docsascode_theme:latest
29+
codeandmedia/docsascode-theme:latest
3030
```
3131

3232
## Perks

docs/content/themes/even/index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
title = "even"
44
description = "A robust, elegant dark theme"
55
template = "theme.html"
6-
date = 2018-01-25T18:44:44+01:00
6+
date = 2020-07-08T12:08:02+02:00
77

88
[extra]
9-
created = 2019-07-12T23:49:55+02:00
10-
updated = 2018-01-25T18:44:44+01:00
11-
repository = "https://github.com/getzola/even"
9+
created = 2020-07-08T12:08:02+02:00
10+
updated = 2020-07-08T12:08:02+02:00
11+
repository = "https://github.com/getzola/even.git"
1212
homepage = "https://github.com/getzola/even"
13-
minimum_version = "0.6.0"
13+
minimum_version = "0.11.0"
1414
license = "MIT"
1515
demo = "https://zola-even.netlify.com"
1616

@@ -48,9 +48,9 @@ The theme requires tags and categories taxonomies to be enabled in your `config.
4848

4949
```toml
5050
taxonomies = [
51-
# You can enable/disable feeds
52-
{name = "categories", feed = true},
53-
{name = "tags", feed = true},
51+
# You can enable/disable RSS
52+
{name = "categories", rss = true},
53+
{name = "tags", rss = true},
5454
]
5555
```
5656
If you want to paginate taxonomies pages, you will need to overwrite the templates

0 commit comments

Comments
 (0)