-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
163 lines (133 loc) · 4.15 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
################################# Default configuration ###################
# provide your domain here
baseURL = "https://crpl.cis.udel.edu/oaccvv"
# theme
theme = "dot-hugo"
# site title
title = "OpenACC V&V"
# disable language
disableLanguages = []
# google analytics
googleAnalytics = "" # paste your analytics ID here. (Ex: UA-123-45)
# unsafe html
# [markup.goldmark.renderer]
# unsafe = true
staticDir = ['static']
languageCode = "en-us"
relativeURLS = true
canonifyurls = true
[markup.goldmark.renderer]
unsafe = true
############################# Default Parameters ##########################
[Params]
# logo is for all page
logo = "/images/OpenACCVVdark.png"
# logo white is for homepage logo, you can use colorful logo too...
logo_white = "/images/OpenACCVVwhite.png"
# when logo is empty, it will shown your site title
# OpenGraph / Twitter Card metadata
description = "The OpenACC Validation and Verification Testsuite"
author = "OpenACC V&V"
image = "static/images/openacc_logo.svg" # this image will be used as fallback if a page has no image of its own
# customize color
primary_color = "#122654"
body_color = "#f9f9f9"
text_color = "#636363"
text_color_dark = "#242738"
white_color = "#fff"
light_color = "#f8f9fa"
dark_blue = "#122654"
# font family
font_family = "lato" # Choose font family from : https://fonts.google.com/
# contact form action
contact_form_action = "#" # contact form works with : https://formspree.io
############################## social links ##############################
[[params.social]]
icon = "ti-twitter-alt" # themify icon pack : https://themify.me/themify-icons
name = "Twitter CRPL"
link = "https://twitter.com/crpl_hpc?lang=el"
[[params.social]]
icon = "ti-twitter-alt" # themify icon pack : https://themify.me/themify-icons
name = "Twitter AJ"
link = "https://twitter.com/aaronjarmusch?lang=en"
[[params.social]]
icon = "ti-github" # themify icon pack : https://themify.me/themify-icons
name = "Github"
link = "https://github.com/OpenACCUserGroup/OpenACCV-V"
[[params.social]]
icon = "ti-linkedin" # themify icon pack : https://themify.me/themify-icons
name = "Linkedin"
link = "https://www.linkedin.com/in/aaron-jarmusch-1174981b1"
################################ English Language ######################
[Languages.en]
languageName = "En"
languageCode = "en-us"
weight = 1
copyright = "Copyright © 2022; Theme made for OpenACC V&V"
# banner
[Languages.en.params.banner]
title = "OpenACC Verification and Validation Testsuite"
subtitle = "Find advice and answers from our support team fast or get in touch"
bg_image = "images/banner.jpg"
placeholder = "Have a question? Just ask here or enter terms"
# welcome
[Languages.en.params.welcome]
enable = true
title = "Welcome"
content = "This website contains information about the OpenACC V&V testsuite. This work is in collaboration with OpenACC/NVIDIA/Mentor Graphics. Any project related questions, please mail Aaron Jarmusch (Jarmusch@udel.edu) or Sunita Chandrasekaran (schandra@udel.edu)."
# call to action
[Languages.en.params.cta]
enable = true
title = "Just ask. Get answers."
content = "Your questions and comments are important to us."
# call to action button
[Languages.en.params.cta.button]
enable = true
label = "contact us"
link = "contact"
################## english navigation #################
[[Languages.en.menu.main]]
name = "Home"
url = ""
weight = 1
[[Languages.en.menu.main]]
name = "About"
url = "about"
weight = 2
[[Languages.en.menu.main]]
name = "Publications"
url = "about/publications/"
weight = 3
[[Languages.en.menu.main]]
name = "Results"
url = "results"
weight = 4
[[Languages.en.menu.main]]
name = "Github"
url = "github"
weight = 5
# Dropdown menu
[[Languages.en.menu.main]]
name = "Contact"
url = "contact"
weight = 6
[[Languages.en.menu.main]]
name = "CRPL"
url = "https://crpl.cis.udel.edu"
weight = 7
#hasChildren = true
# [[Languages.en.menu.main]]
# parent = "project"
# name = "Installation"
# url = "installation"
# weight = 1
# [[Languages.en.menu.main]]
# parent = "project"
# name = "Requirments"
# url = "requirments"
# weight = 2
# [[Languages.en.menu.main]]
# parent = "project"
# name = "Elements"
# url = "elements"
# weight = 3