-
Notifications
You must be signed in to change notification settings - Fork 55
/
config.toml
110 lines (93 loc) · 3.11 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
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
baseURL = "https://blog.circuitverse.org/"
languageCode = "en-us"
title = "CircuitVerse Blog"
theme = "northendlab-hugo"
############################ Default configuration #########################
# post pagination
paginate = "5"
# post excerpt
summaryLength = "10"
# disqus short name
disqusShortname = "blog-circuitverse-org" # get your shortname form here : https://disqus.com
[outputs]
home = ["HTML", "AMP", "RSS", "JSON"]
########################## Plugings ######################################
# css plugins
[[params.plugins.css]]
link = "plugins/bootstrap/bootstrap.min.css"
[[params.plugins.css]]
link = "plugins/themify-icons/themify-icons.css"
# js plugins
[[params.plugins.js]]
link = "plugins/jQuery/jquery.min.js"
[[params.plugins.js]]
link = "plugins/bootstrap/bootstrap.min.js"
[[params.plugins.js]]
link = "plugins/search/fuse.min.js"
[[params.plugins.js]]
link = "plugins/search/mark.js"
[[params.plugins.js]]
link = "plugins/search/search.js"
########################### Navigation ###################################
# main menu
[[menu.main]]
URL = "contact"
name = "Contact"
weight = 1
# footer menu
[[menu.footer]]
URL = "contact"
name = "Contact"
weight = 1
######################### Default Parameters ###########################
[params]
# home
home = "Home"
# logo
logo = "images/logo.svg"
# meta data
author = "Circuitverse"
description = "CircuitVerse Blog"
# google tag manager
google_tag_manager = "" # your id
# google analitycs ID
google_analitycs_id = "UA-112678513-4" # your id
# contact form action
contact_form_action = "https://formspree.io/[email protected]" # contact form works with : https://formspree.io
# copyright
copyright = "© 2024 [CircuitVerse](https://circuitverse.org) All Rights Reserved"
# preloader
[params.preloader]
enable = true
preloader = "" # use png, jpg, svg or gif format
# search
[params.search]
enable = true
####################### banner #######################################
[params.banner]
bgImage = "/images/blog-assets/banner-bg.svg"
title = "Dive into the world of Logic Circuits for free!"
image = "/images/blog-assets/banner.png"
######################## call to action ###############################
[params.cta]
enable = true
image = "/images/blog-assets/cv.png"
title = "Create circuits"
description = "From simple gates to complex sequential circuits, plot timing diagrams, automatic circuit generation, explore standard ICs, and much more"
[params.cta.button]
enable = true
label = "Check it out"
link = "https://circuitverse.org"
############################## Social Site ##########################
[[params.social]]
icon = "ti-facebook" # themify icon pack https://themify.me/themify-icons
link = "https://www.facebook.com/CircuitVerse"
[[params.social]]
icon = "ti-twitter-alt" # themify icon pack https://themify.me/themify-icons
link = "https://twitter.com/CircuitVerse"
[[params.social]]
icon = "ti-github" # themify icon pack https://themify.me/themify-icons
link = "https://github.com/Circuitverse/Circuitverse"
[[params.social]]
icon = "ti-linkedin" # themify icon pack https://themify.me/themify-icons
link = "https://www.linkedin.com/company/circuitverse"