-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
79 lines (61 loc) · 2.74 KB
/
config.toml
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
# The URL the site will be built for
base_url = "https://codeshow.com.br"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
default_language = 'pt'
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
theme = "dinkleberg"
paginate_by = 5
generate_rss = false
generate_categories_pages = true
generate_tags_pages = true
taxonomies = [
# You can enable/disable RSS
{name = "categories", rss = true},
{name = "tags", rss = true},
]
[extra]
# blog_logo="/codeshow_logo.png" #will appear on top header
blog_title="CodeShow - Tecnologia com foco no código!" #will appear on top header after logo
## i18n words
label_tags = "Tags"
label_tag = "Tag"
label_categories = "Categorias"
label_category = "Categoria"
label_relative_posts = "Postagens Relacionadas"
label_next = "Próxima"
label_previous = "Anterior"
label_page = "Página"
label_of = "de"
label_minutes = "minutos"
og_image="/codeshow_py.png" # Image that will appear on social media
og_alt_image="/hands_in_show.png" # Alt for og_image
og_site_name="CodeShow" # Site Name for Open Graphic
keywords="programação, desenvolvimento, programador, python, flask, rust, qualidade de software, engenharia de software" # Keywords for SEO
educational_use="knowledge share" # OPTIONAL
copyright_year="2019" # OPTIONAL
#fb_app_id="???" # OPTIONAL, Facebook App Id to help in metrics
twitter_username="@rochacbruno" # OPTIONAL, Twitter User to help with metrics
## Sidebar automatic links
sidebar = [
{name = "Links:", urls=[
{name="▶ Youtube", url="https://www.youtube.com/c/codeshowbr?sub_confirmation=1", target="_blank"},
{name="📸 Instagram", url="https://instagram.com/codeshowbr", target="_blank"},
{name="🦋 Bsky", url="https://bsky.app/profile/codeshow.me", target="_blank"},
{name="💻 Github", url="https://github.com/codeshow", target="_blank"},
{name="📺 Twitch", url="https://twitch.tv/codeshow", target="_blank"},
]},
{name = "Conteúdo:", urls=[
{name="🏫 Cursos", url="/curso", target="_self"},
{name="🗃 Categorias", url="/categories", target="_self"},
{name="🏷 Tags", url="/tags", target="_self"},
{name="🖼 Sobre", url="/about", target="_self"},
]},
]
top_image = {path = '../static/cover_art.png', width=1015, height=250, op='fill', url='https://www.youtube.com/c/CodeShowBR?sub_confirmation=1', target="_blank"}
authors = {rochacbruno={name='Bruno Rocha', avatar='https://avatars0.githubusercontent.com/u/458654?s=200&v=4'}}
ganalytics = 'UA-152803298-1'