5.8 KiB
+++ insert_anchor_links = "right" +++
{% crt() %}
_ _ _ _ _
>(')____, >(')____, >(')____, >(')____, >(') ___,
(` =~~/ (` =~~/ (` =~~/ (` =~~/ (` =~~/
jgs~^~^`---'~^~^~^`---'~^~^~^`---'~^~^~^`---'~^~^~^`---'~^~^~
{% end %}
Duckquill
Duckquill is a modern, pretty, and clean (and very opinionated) Zola theme that has the purpose of greatly simplifying the process of rolling up your blog. It aims to provide all the needed options for comfortable writing, keeping the balance of it being simple.
Edit a bit of metadata and tweak some of the included graphics and have a blog up in minutes!
- Pretty, yet lightweight. No JavaScript are used.
- For a very pleasant look, the colors are tinted with the primary color.
- Proper favicon for modern browsers and Apple device icons.
- Mastodon, Lemmy and other social media meta cards for easy sharing. Try Share Preview to test.
- Local copy of the amazing Inter and JetBrains Mono fonts, plus Bootstrap Icons. No slowdowns pulling from external hosting.
- Mobile friendly, with proper dark variant.
- Mastodon-powered comments. Comment using any ActivityPub service by replying to Mastodon post.
Duckquill is made based on needs of my website, if you need some feature/configuration that doesn't exist feel free to open an issue or better yet, pull request!
Installation
First, download this theme to your themes
directory:
git clone https://git.exozy.me/daudix/duckquill.git themes/duckquill
...or add as submodule for easy updating (recommended if you already have git setup on site):
git submodule init
git submodule add https://git.exozy.me/daudix/duckquill.git themes/duckquill
To update the submodule, use the following command:
git submodule update --remote --merge
and then enable it in your config.toml
:
theme = "duckquill"
Options
Duckquill offers some configuration options to make it fit you better; most options have pretty descriptive comments, so it should be easy to understand what they do.
Custom stylesheets
You can add your own or override existing styles by creating custom stylesheet and adding it in the config.toml
:
[extra]
stylesheets = [
"YOUR_STYLE.css"
]
Additional stylesheets; expects it to be in the static
directory. If you are using Sass it will be compiled there anyway.
If for some reason overridden class are not respected, try using !important
. You can import styles from Duckquill using:
@use "../themes/duckquill/sass/NEEDED_FILE.scss";
Primary color
Duckquill respects chosen primary color everywhere, you can use any HEX color code you want
First, change the primary color in config.toml
:
[extra]
primary_color = "#HEX_COLOR_CODE"
Then, add custom.css
to additional stylesheets.
[extra]
stylesheets = [
"custom.css"
]
Then, paste the following code inside sass/custom.scss
(inside your site, not the theme):
@use "sass:color";
$primary-color: #HEX_COLOR_CODE;
$primary-color-alpha: color.scale($primary-color, $alpha: -80%);
$bg-color-l: color.mix($primary-color, rgb(250, 250, 250), 10%);
$bg-color-d: color.mix($primary-color, rgb(11, 11, 11), 5%);
$crt-bg: radial-gradient(
color.scale($primary-color, $lightness: -80%),
color.scale($primary-color, $lightness: -90%)
);
$glow: 0 0 0 1px color.scale($primary-color, $alpha: -95%),
0 2px 6px 2px color.scale($primary-color, $alpha: -95%),
0 4px 24px 4px color.scale($primary-color, $alpha: -90%);
:root {
--bg-color: #{$bg-color-l};
--crt-bg: #{$crt-bg};
--primary-color-alpha: #{$primary-color-alpha};
--primary-color: #{$primary-color};
--glow: #{$glow};
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #{$bg-color-d};
}
}
Set any color in $primary-color
and reload, the primary color should be used now. This is a hack that is needed until Zola will be able to use config.toml
options inside Sass files.
Test pages
Contribute
If you want to improve Duckquill in any way, feel free to open an issue, or even better, a pull request! I'm happy about every contribution!
The main repo is git.exozy.me/daudix/duckquill, but since only exozy.me members can open issues and pull requests, there is two-way mirror at next.forgejo.org/daudix-UFO/duckquill, you can open issues and pull requests there just fine.
Credits
Thanks to ♥
- Jakub Steiner for the OS Component Website, on top of which this whole thing is built
- Cassidy James for the Mastodon-powered Comments
- Mehdi Merah for the CSS Scanlines
- Bootstrap team for the Bootstrap Icons
- Rasmus for the Inter font
- JetBrains for the JetBrains Mono font
- dwb, ejm and jgs for the ASCII art
- Everyone who supported me and said good stuff <3