diff options
-rw-r--r-- | zola/content/_index.md | 2 | ||||
-rw-r--r-- | zola/static/style.css | 4 | ||||
-rw-r--r-- | zola/templates/section.html | 8 |
3 files changed, 9 insertions, 5 deletions
diff --git a/zola/content/_index.md b/zola/content/_index.md index aec76e4..e9d05ac 100644 --- a/zola/content/_index.md +++ b/zola/content/_index.md @@ -38,5 +38,5 @@ And I also swim, even when I'm not in the mood or I don't have free time. I use the [Slackware Linux distribution](http://www.slackware.com/). I try stick to free software and avoid software and websites that tracks people and ignores privacy. Also, I like self-hosting, and using lightweight and simple software. I like and use some of [suckless](https://suckless.org/) software. I prefer the editor of the beast over emacs. -My computer runs a local [Searxng](https://github.com/searxng/searxng/) engine configured to use [DuckDuckGo](https://duckduckgo.com/), [Qwant](https://www.qwant.com/), and [Startpage](https://www.startpage.com/). And I have a [MediaWiki](https://www.mediawiki.org/wiki/MediaWiki) self-hosted. I used to run a Tor middle relay on my computer, but I had to shut it down when the IT security team of a client thought I was connecting to their VPN over Tor. +My computer runs a local [Searxng](https://github.com/searxng/searxng/) engine configured to use [DuckDuckGo](https://duckduckgo.com/), [Brave](https://search.brave.com), [Mojeek](https://mojeek.com), and [Wiby](https://wiby.me/). And I have a [MediaWiki](https://www.mediawiki.org/wiki/MediaWiki) self-hosted. I used to run a Tor middle relay on my computer, but I had to shut it down when the IT security team of a client thought I was connecting to their VPN over Tor. diff --git a/zola/static/style.css b/zola/static/style.css index 15f020f..852ba61 100644 --- a/zola/static/style.css +++ b/zola/static/style.css @@ -27,12 +27,12 @@ --first-letter-font-size: 130%; --dt-font-size: 120%; --primary-color: var(--base1); - --secondary-color: var(--yellow); + --secondary-color: var(--orange); --content-background-color: var(--base03); --filling-background-color: var(--base02); --text-color: var(--primary-color); --font-family: 'Libertinus'; - --link-text-color: var(--cyan); + --link-text-color: var(--yellow); --highlight-text-color: var(--secondary-color); --primary-border-color: var(--secondary-color); --secondary-border-color: var(--base00); diff --git a/zola/templates/section.html b/zola/templates/section.html index 71d3e06..fd31fba 100644 --- a/zola/templates/section.html +++ b/zola/templates/section.html @@ -16,8 +16,12 @@ <p><a href="{{ page.path | safe}}">{{ page.title }}</a></p> </dt> <dd> - <p><em><date datetime="{{ page.date }}">{{ page.date }}</date></em>: {{ page.description }}</p> - <p> + <p>{{ page.description }}<p> + <p>Created: <em><date datetime="{{ page.date }}">{{ page.date }}</date></em> + {% if page.updated %} + <br/>Updated: <em><date datetime="{{ page.updated }}">{{ page.updated }}</date></em> + {% endif %} + </p> {% for kind, values in page.taxonomies %} {% set cat = get_taxonomy(kind=kind) -%} <a href="{{ cat.permalink | safe }}">{{ kind }}</a>: |