diff options
author | zigzac <fezac@tutanota.com> | 2024-01-17 12:11:38 +0100 |
---|---|---|
committer | zigzac <fezac@tutanota.com> | 2024-01-17 12:11:38 +0100 |
commit | e277624a2f0e6f67ec104756e265547d1d751058 (patch) | |
tree | 5f5a822aec9e3b9f6554b41e0a2c404404bdaa6a | |
parent | 56dd88b715e4bfd4afda24b42c3e3d033efd64d3 (diff) |
adjusted theme
-rw-r--r-- | config.toml | 6 | ||||
-rw-r--r-- | content/post/first_post.md | 45 | ||||
-rw-r--r-- | sass/main.scss | 14 | ||||
-rw-r--r-- | templates/base.html | 2 |
4 files changed, 59 insertions, 8 deletions
diff --git a/config.toml b/config.toml index ea0a852..b2b81aa 100644 --- a/config.toml +++ b/config.toml @@ -6,6 +6,8 @@ base_url = "https://ilfe12.org" compile_sass = true default_language = "en" + +ignored_content = [".git",".gitignore","README.md"] # Whether to build a search index to be used later on by a JavaScript library title = "Zigzac's blog" build_search_index = false @@ -46,8 +48,12 @@ title = "Zigzac's blog" # Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola highlight_code = true +highlight_theme = "two-dark" + render_emoji = true +smart_punctuation = true + [search] # Whether to include the title of the page/section in the index include_title = true diff --git a/content/post/first_post.md b/content/post/first_post.md new file mode 100644 index 0000000..034b5cb --- /dev/null +++ b/content/post/first_post.md @@ -0,0 +1,45 @@ ++++ +title = "First post" +description = "Ipsum lorem or other things to write" +date = 2023-04-20 +authors = ["ll"] +[taxonomies] +categories = ["generic"] +tags = ["en"] ++++ +# Header1 +## Header2 +### Header3 +#### Header4 +##### Header5 +###### Header6 + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa `qui officia deserunt mollit` anim id est laborum. + +*This is italic*. **This is bold**. ***This is bold and italic*** . + +> This is a blockquote\ +> Another block + +`highlighted text` +```bash +#!/bin/bash +echo "This is an example!" +``` + +example|of|table +--- |---|--- +some|text|inside + +- unordered +- list + - sublist + - example +- example + +1. ordered +2. list + 1. sublist + 2. example +3. example + diff --git a/sass/main.scss b/sass/main.scss index 13a5ddf..997daf9 100644 --- a/sass/main.scss +++ b/sass/main.scss @@ -219,7 +219,7 @@ body { text-decoration: none; &:hover { color: #fff; - font-size: 1em; + font-size: 1.1em; } } } @@ -355,33 +355,33 @@ body { } h1 { - font-size: 1.8em; + font-size: 1.9em; color: $tender-bluez; } h2 { - font-size: 1.7em; + font-size: 1.8em; color: $tender-bluez; } h3 { - font-size: 1.5em; + font-size: 1.6em; color: $tender-bluez; } h4 { - font-size: 1.4em; + font-size: 1.5em; color: $tender-bluez; } h5 { - font-size: 1.3em; + font-size: 1.4em; color: $tender-bluez; } h6 { - font-size: 1.2em; + font-size: 1.3em; color: $tender-bluez; } diff --git a/templates/base.html b/templates/base.html index a44cd38..40b9295 100644 --- a/templates/base.html +++ b/templates/base.html @@ -52,7 +52,7 @@ </div> <div class="langua"> - <a href="/">en</a> | <a href="/ru">ru</a> | <a href="/it">it</a> + <a href="/">en</a> | <a href="/ru/">ru</a> | <a href="/it/">it</a> </div> </div> |