diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-01-30 17:25:59 +0200 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-01-30 17:25:59 +0200 |
commit | 3be33d0311bc291fb394d4a8de313de35974f47d (patch) | |
tree | 2f0ff79511ed9259e1d84ac1af87f68a560b345a /config.toml | |
parent | f31b3176d064498f970c4d88ff7142a5480d6e5f (diff) |
Infrastructure coming together.
Changes to be committed:
modified: README.md
modified: config.toml
modified: content/about.md
new file: content/posts/How I made this Blog with Zola.md
modified: content/posts/_index.md
modified: content/posts/code_test.md
deleted: content/posts/good_first_post.md
deleted: content/posts/later_posts.md
modified: content/posts/typography.md
modified: rsync_to_testing
new file: static/diffusion.pdf
new file: static/nst.pdf
modified: templates/index.html
modified: templates/page.html
Diffstat (limited to 'config.toml')
-rw-r--r-- | config.toml | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/config.toml b/config.toml index da10801..41345fa 100644 --- a/config.toml +++ b/config.toml @@ -3,7 +3,7 @@ base_url = "https://alphara.art" # Used in RSS by default title = "Alphara's Blog" -description = "Blog dedicated to my stuff" +description = "Blog dedicated to my stuff" # Neural Art at its finest :)) # The default language, used in RSS and as a fallback value default_language = "en" @@ -35,7 +35,7 @@ taxonomies = [ compile_sass = true # When set to "true", the generated HTML files are minified. -minify_html = false +minify_html = true # This does the whole example.com/image.jpg url hardlinking thing (supposedly) # When set to "true", files in the `static` directory are hard-linked. Useful for large @@ -46,7 +46,7 @@ hard_link_static = true # Whether to build a search index out of the pages and section content for the `default_language` # or whether to build a search index to be used later on by a JavaScript library -build_search_index = true # false +build_search_index = false # A list of glob patterns specifying asset files to ignore when processing the content directory. # Defaults to none, which means all asset files are copied over to the public folder. @@ -61,6 +61,7 @@ extra_syntaxes = [] # Highlight all code blocks found highlight_code = true +#highlight_theme = "1337" # weird behavior i need to fix render_emoji = true # like :smile: and :shrug: @@ -74,7 +75,7 @@ render_emoji = true # like :smile: and :shrug: # MathJax / LaTeX rendering support math = true -home_subtitle = "Some profound and catchy statement" +home_subtitle = "Neural Art at its finest :))" # better title and description footer_copyright = ' · <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>' @@ -84,11 +85,11 @@ hermit_menu = [ ] hermit_social = [ - { name = "twitter", link = "https://twitter.com/IustinRaznic" }, - { name = "linkedin", link = "https://www.linkedin.com/in/iustin-raznic" }, { name = "github", link = "https://github.com/xAlpharax" }, + { name = "linkedin", link = "https://www.linkedin.com/in/iustin-raznic" }, { name = "youtube", link = "https://www.youtube.com/@alphara2643" }, - { name = "mastodon", link = "https://mastodon.social/@alphara" }, + # { name = "mastodon", link = "https://mastodon.social/@alphara" }, + { name = "twitter", link = "https://twitter.com/IustinRaznic" }, { name = "email", link = "mailto:iustin@alphara.art" } ] @@ -106,6 +107,7 @@ theme = "1337" # Take this from your Disqus account # shortname = "my-supa-dupa-blog" + # Comments can be disabled per page by setting: # [extra] # disable_comments = true |