summaryrefslogtreecommitdiff
path: root/config.toml
blob: 729db827af6ee490e42c72374718001e4ddbe9bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Base URL of the site, the only required config argument - also used for sitemap and rss
base_url = "https://alphara.art"

# Used in RSS by default
title = "Alphara's Blog"
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"

# Theme name to use
# theme = ""

# Whether to generate a RSS feed automatically
generate_feed = true
feed_filename = "atom.xml"

# The number of articles to include in the RSS feed. Will include all items if
# not set (the default).
# rss_limit = 20

# The taxonomies to be rendered for that site and their configuration
# Example:
#     taxonomies = [
#       {name = "tags", rss = true}, # each tag will have its own RSS feed
#       {name = "categories", paginate_by = 5},  # 5 items per page for a term
#       {name = "authors"}, # Basic definition: no RSS or pagination
#     ]
#
taxonomies = [
    {name = "tags", rss = true}
]

# Whether to automatically compile all sass files found in the `sass` directory
compile_sass = true

# When set to "true", the generated HTML files are minified.
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
# static files. Note that for this to work, both `static` and the
# output directory need to be on the same filesystem. Note that the theme's `static`
# files are always copied, regardless of this setting.
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 = 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.
# Example:
#     ignored_content = ["*.{graphml,xlsx}", "temp.*"]
ignored_content = []

# A list of directories to search for additional `.sublime-syntax` files in.
extra_syntaxes = []

[markdown]

# Highlight all code blocks found
highlight_code = true
highlight_theme = "base16-ocean-dark"

render_emoji = true # like :smile: and :shrug:

[translations]

# You can put any kind of data in there and it
# will be accessible in all templates

[extra]

# MathJax / LaTeX rendering support globally (expensive)
# math = true # you should enable this per-page when needed (it also gets automatically checked when detecting \tex stuff)

home_subtitle = "Neural Art at its finest :))" # better title and description

footer_copyright = ' &#183; <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'

hermit_menu = [
    { link = "/posts", name = "Posts" },
    { link = "/about", name = "About" }
]

hermit_social = [
    { 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 = "twitter", link = "https://twitter.com/IustinRaznic" },
    { name = "email", link = "mailto:iustin@alphara.art" }
]

[extra.highlightjs]

#enable = true
#clipboard = true
#theme = "1337"
# theme = "railscasts"
# theme = "vs2015"

[extra.disqus]

# enable = false

# Take this from your Disqus account
# shortname = "my-supa-dupa-blog"

# Comments can be disabled per page by setting:
# [extra]
# disable_comments = true
#
# in the posts front-matter

# Similarily, but unrelated
# Table of content can be enabled by adding
# +++
# [extra]
# toc=true
# +++
# to the page front matter
# Icon will then appear above the page title that will toggle the ToC

[extra.author]

name = "Iustin Râznic"
email = "iustin@alphara.art"

[extra.google_analytics]

# enable = false
# id = "UA-4XXXXXXX-X"