M config.toml => config.toml +1 -1
@@ 6,7 6,7 @@ compile_sass = true
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
-highlight_code = true
+highlight_code = false
highlight_theme = "gruvbox-dark"
# Whether to build a search index to be used later on by a JavaScript library
M content/posts/2019-10-27_hello-blog.md => content/posts/2019-10-27_hello-blog.md +4 -3
@@ 58,9 58,10 @@ took a few hours since I hadn't done that before.
This site is probably the simplest thing I could get working quickly, with the
requisite time taken for styling neuroticism. All the setup for the text you're
-reading now is available [here](https://git.sr.ht/~cdv/chris.vittal.dev). I'm
-using [Zola](https://www.getzola.org) for the site generation. While not having
-much experience with static generators, or templating, we primarily use jinja2
+reading now is available [here on
+sourcehut](https://git.sr.ht/~cdv/chris.vittal.dev). I'm using
+[Zola](https://www.getzola.org) for the site generation. While not having much
+experience with static generators, or templating, we primarily use jinja2
templates for services at work and the syntax was familiar enough that I could
get started quickly. It's also written in rust, my favorite programming
language, and supporting its ecosystem means a lot to me.
M sass/style.scss => sass/style.scss +15 -1
@@ 161,11 161,17 @@ a {
}
p {
- text-align: justify;
+// text-align: justify;
}
pre {
padding: 0.5em 1ex;
+ background-color: #fcf0ca;
+
+ code {
+ color: #282828aa;
+ padding: 0;
+ }
}
.subheading {
@@ 200,6 206,14 @@ blockquote {
color: #8ec07c;
}
+ pre {
+ background-color:#282828;
+
+ code {
+ color: #fdf4c1aa;
+ }
+ }
+
blockquote {
color: $subheading-dark;
}
M => +1 -1
@@ 8,5 8,5 @@
code</a> for this site is
licensed under the
<a rel="license" target="_blank" href="https://www.gnu.org/licenses/agpl-3.0.txt">
GNU Affero General Public License</a>.
GNU Affero General Public License Version 3</a>.
</footer>