Skip to content

Commit e2dd6e6

Browse files
committed
Initial version of website
0 parents  commit e2dd6e6

34 files changed

Lines changed: 399 additions & 0 deletions

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/public/
2+
/resources/_gen
3+
.hugo_build.lock

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "themes/blowfish"]
2+
path = themes/blowfish
3+
url = https://github.com/nunocoracao/blowfish.git
4+
branch = main

assets/css/schemes/gamm.css

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
:root {
2+
--color-neutral: 255, 255, 255;
3+
--color-neutral-50: 255,255,255;
4+
--color-neutral-100: 215,246,219;
5+
--color-neutral-200: 151,233,162;
6+
--color-neutral-300: 88,220,105;
7+
--color-neutral-400: 40,191,60;
8+
--color-neutral-500: 27,128,40;
9+
--color-neutral-600: 20,94,29;
10+
--color-neutral-700: 13,61,19;
11+
--color-neutral-800: 6,27,8;
12+
--color-neutral-900: 0,0,0;
13+
14+
15+
--color-primary-50: 255,255,255;
16+
--color-primary-100: 215,246,219;
17+
--color-primary-200: 151,233,162;
18+
--color-primary-300: 88,220,105;
19+
--color-primary-400: 40,191,60;
20+
--color-primary-500: 27,128,40;
21+
--color-primary-600: 20,94,29;
22+
--color-primary-700: 13,61,19;
23+
--color-primary-800: 6,27,8;
24+
--color-primary-900: 0,0,0;
25+
26+
27+
28+
29+
30+
--color-secondary-50: 208,208,208;
31+
--color-secondary-100: 170,170,170;
32+
--color-secondary-200: 132,132,132;
33+
--color-secondary-300: 94,94,94;
34+
--color-secondary-400: 55,55,55;
35+
--color-secondary-500: 17,17,17;
36+
--color-secondary-600: 0,0,0;
37+
--color-secondary-700: 0,0,0;
38+
--color-secondary-800: 0,0,0;
39+
--color-secondary-900: 0,0,0;
40+
}

assets/img/Logo.png

24.9 KB
Loading

assets/img/authors/jpthiele.jpg

122 KB
Loading

config/_default/hugo.toml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# -- Site Configuration --
2+
# Refer to the theme docs for more details about each of these parameters.
3+
# https://blowfish.page/docs/getting-started/
4+
5+
theme = "blowfish" # UNCOMMENT THIS LINE
6+
# baseURL = "https://your_domain.com/"
7+
defaultContentLanguage = "en"
8+
9+
# pluralizeListTitles = "true" # hugo function useful for non-english languages, find out more in https://gohugo.io/getting-started/configuration/#pluralizelisttitles
10+
11+
enableRobotsTXT = true
12+
summaryLength = 0
13+
14+
buildDrafts = false
15+
buildFuture = false
16+
17+
enableEmoji = true
18+
19+
[pagination]
20+
pagerSize = 100
21+
22+
[imaging]
23+
anchor = 'Center'
24+
25+
[taxonomies]
26+
tag = "tags"
27+
category = "categories"
28+
author = "authors"
29+
series = "series"
30+
31+
[sitemap]
32+
changefreq = 'daily'
33+
filename = 'sitemap.xml'
34+
priority = 0.5
35+
36+
[outputs]
37+
home = ["HTML", "RSS", "JSON"]
38+
39+
[related]
40+
threshold = 0
41+
toLower = false
42+
43+
[[related.indices]]
44+
name = "tags"
45+
weight = 100
46+
47+
[[related.indices]]
48+
name = "categories"
49+
weight = 100
50+
51+
[[related.indices]]
52+
name = "series"
53+
weight = 50
54+
55+
[[related.indices]]
56+
name = "authors"
57+
weight = 20
58+
59+
[[related.indices]]
60+
name = "date"
61+
weight = 10
62+
63+
[[related.indices]]
64+
applyFilter = false
65+
name = 'fragmentrefs'
66+
type = 'fragments'
67+
weight = 10

config/_default/languages.en.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
disabled = false
2+
languageCode = "en"
3+
languageName = "English"
4+
weight = 1
5+
title = "GAMM RSE & RDM"
6+
7+
[params]
8+
displayName = "EN"
9+
isoCode = "en"
10+
logo = "img/Logo.png"
11+
rtl = false
12+
dateFormat = "2 January 2006"

config/_default/markup.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# -- Markup --
2+
# These settings are required for the theme to function.
3+
4+
[goldmark]
5+
[goldmark.renderer]
6+
unsafe = true
7+
8+
[highlight]
9+
noClasses = false
10+
11+
[tableOfContents]
12+
startLevel = 2
13+
endLevel = 4

config/_default/menus.en.toml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[[main]]
2+
name = "ABOUT"
3+
pageRef = "index"
4+
weight = 10
5+
6+
7+
[[main]]
8+
name = "NEWS"
9+
pageRef = "news"
10+
weight = 20
11+
12+
[[main]]
13+
name = "MEMBERS"
14+
pageRef = "members"
15+
weight = 30
16+
17+
[[main]]
18+
name = "ALLIES"
19+
pageRef = "allies"
20+
weight = 40
21+
22+
[[main]]
23+
pre = "github"
24+
url = "https://github.com/GAMM-AG-RSE-RDM/"
25+
weight = 50
26+
27+
[[footer]]
28+
none = "none"

config/_default/module.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[hugoVersion]
2+
extended = false
3+
min = "0.87.0"

0 commit comments

Comments
 (0)