~cdv/chris.vittal.dev

38e6a07b8deeeaa74bc83e6fc2764a51fc6db0f3 — Chris Vittal 4 years ago 60ca746
Theming tweaks. Remove code highlighting for now.
4 files changed, 21 insertions(+), 6 deletions(-)

M config.toml
M content/posts/2019-10-27_hello-blog.md
M sass/style.scss
M templates/footer.html
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 templates/footer.html => templates/footer.html +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>