Skip to content

Commit 73aa076

Browse files
updated toml
1 parent e3b5ad8 commit 73aa076

File tree

3 files changed

+59
-28
lines changed

3 files changed

+59
-28
lines changed

.gitmodules

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[submodule "themes/PaperMod"]
2-
path = themes/PaperMod
3-
url = https://github.com/adityatelange/hugo-PaperMod.git
41
[submodule "themes/ananke"]
52
path = themes/ananke
63
url = https://github.com/theNewDynamic/gohugo-theme-ananke.git

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Requirements:
1010
From within the repo's root directory:
1111

1212
```shell
13-
git submodule add --depth=1 https://github.com/adityatelange/hugo-PaperMod.git themes/PaperMod
13+
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke
1414
git submodule update --init --recursive
1515
```
1616
### Serve locally:

hugo.toml

+58-24
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,58 @@
1-
baseURL = 'https://innovation.3dbag.nl/'
2-
languageCode = 'nl-nl'
3-
title = '3DBAG Innovatie Platform'
4-
theme = 'PaperMod'
5-
6-
[params.profileMode]
7-
enabled = true
8-
#title = "3D BAG Innovatieplatform (Binnenkort beschikbaar...)"
9-
subtitle = "Dit is de website van het 3DBAG innovatieplatform. Dit platform wordt gecoördineerd door Geonovum. Op deze website wordt een uitleg gegeven van het platform en worden activiteiten, resultaten etc van het platform gepubliceerd. "
10-
imageUrl = "./images/tud.jpg"
11-
imageWidth = 400
12-
imageHeight = 400
13-
14-
[[params.profileMode.buttons]]
15-
name = "About"
16-
url = "/about"
17-
18-
[[params.profileMode.buttons]]
19-
name = "Publicaties"
20-
url = "/publicaties"
21-
22-
[[params.socialIcons]]
23-
name = "Github"
24-
url = "https://github.com/3DBAG"
1+
title = "3D Innovatie Platform"
2+
baseURL = "https://innovation.3dbag.nl"
3+
theme = "ananke"
4+
resourceDir = "../resources"
5+
6+
defaultContentLanguage = "nl"
7+
sectionPagesMenu = "main"
8+
enableRobotsTXT = true
9+
10+
[pagination]
11+
pagerSize = 3 # this is set low for demonstrating with dummy content. Set to a higher number
12+
13+
[languages.nl]
14+
contentDir = "content/nl"
15+
languageCode = 'nl-NL'
16+
weight = 1
17+
title = "3DBAG Innovatie Platform"
18+
19+
[languages.en]
20+
contentDir = "content/en"
21+
languageCode = 'en-US'
22+
weight = 2
23+
title = "3DBAG Innovation Platform"
24+
25+
26+
[sitemap]
27+
changefreq = "monthly"
28+
priority = 0.5
29+
filename = "sitemap.xml"
30+
31+
[params]
32+
text_color = "mid-gray"
33+
author = ""
34+
favicon = 'img/favicon.ico'
35+
site_logo = ""
36+
description = ""
37+
# choose a background color from any on this page: https://tachyons.io/docs/themes/skins/ and preface it with "bg-"
38+
background_color_class = "bg-purple"
39+
# choose fitting and alignment styles for the featured image using Tachyons classes such as "cover|contain" for fitting and "bg-top|bg-center|bg-bottom" for alignment, or add any other class space-separated to customize further
40+
featured_image_class = "cover bg-top"
41+
# choose a color dimming class for the page or site header from any on this page: https://tachyons.io/docs/themes/skins/, preface it with "bg-" and add the value such as "-X0" where X is in [1,9]
42+
cover_dimming_class = "bg-purple-60"
43+
recent_posts_number = 4
44+
body_classes = "avenir bg-near-white"
45+
46+
[params.ananke.social.share]
47+
networks = [
48+
"linkedin"
49+
]
50+
51+
[params.ananke.social.follow]
52+
networks = [
53+
"github"
54+
]
55+
56+
[params.ananke.social.github]
57+
username = "3DBAG"
58+
profilelink = "https://github.com/3DBAG"

0 commit comments

Comments
 (0)