Skip to content

Commit 717a2cd

Browse files
committed
initial commit
0 parents  commit 717a2cd

File tree

6 files changed

+111
-0
lines changed

6 files changed

+111
-0
lines changed

.gitmodules

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

archetypes/default.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---
6+

config.toml

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
baseURL = "https://hannuhartikainen.fi"
2+
title = "Hannu Hartikainen"
3+
# for smart copyright line, leave this blank and check [params.copyright]
4+
copyright = ""
5+
6+
theme = "minimo"
7+
8+
disqusShortname = ""
9+
googleAnalytics = ""
10+
11+
Paginate = 10
12+
preserveTaxonomyNames = true
13+
14+
enableRobotsTXT = true # generate robots.txt
15+
16+
# Syntax Highlighting ( https://gohugo.io/content-management/syntax-highlighting/ )
17+
# pygmentsCodefences = true
18+
19+
enableEmoji = false
20+
21+
# Missing translations will default to this content language
22+
defaultContentLanguage = "en"
23+
24+
[params.info]
25+
description = ""
26+
title404 = "Nothing here!"
27+
28+
[params.assets]
29+
favicon = "favicon.ico"
30+
customCSS = []
31+
customJS = []
32+
gopher = "" # used in 404 template ( Generator: https://gopherize.me )
33+
34+
[params.copyright]
35+
prefix = ""
36+
holder = "Hannu Hartikainen"
37+
startYear = "2018"
38+
suffix = ""
39+
40+
[params.settings]
41+
# date & time format: https://golang.org/pkg/time/
42+
dateFormat = "2006-01-02"
43+
listDateFormat = "2006-01-02"
44+
archiveDateFormat = "2006-01-02"
45+
hideEntryNavigation = ["page"] # boolean / array of sections
46+
hideSocialMenu = false
47+
showReadingTime = true
48+
taxonomyCloudShuffle = true
49+
accentColor = "#3baeff"
50+
51+
[params.sidebar]
52+
enable = false
53+
54+
[params.widgets]
55+
homepage = ["recent_posts"]
56+
sidebar = ["about","taxonomy_cloud"]
57+
58+
[params.opengraph.twitter]
59+
page = "" # Twitter page username
60+
61+
[params.seo]
62+
# Title Separator: - – — · • * ⋆ | ~ « » < >
63+
titleSeparator = ""
64+
65+
[params.social]
66+
codepen = "dancek"
67+
email = "hannu.hartikainen+hhfi@gmail.com"
68+
facebook = ""
69+
github = "dancek"
70+
gitlab = "dancek"
71+
instagram = ""
72+
linkedin = "hannuhartikainen"
73+
twitter = ""
74+
telegram = ""
75+
google_scholar = ""
76+
77+
[taxonomies]
78+
category = "categories"
79+
series = "series"
80+
tag = "tags"
81+
82+
[permalinks]
83+
page = "/:slug/"
84+
85+
[[menu.main]]
86+
name = "Repo"
87+
weight = -10
88+
identifier = "repository"
89+
url = "https://github.com/dancek/hhfi-hugo"

content/_index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Home
3+
menu: main
4+
weight: -270
5+
---
6+
7+
Welcome to my humble home page. The nth try at that. I had the domain pointing nowhere for a long time after having an emptyish page for a long time. We'll see where this goes.
8+
9+
If there's no interesting content here, see the social links in the footer. There's some code at least. Also see [some of the books I've read](https://www.goodreads.com/user/show/20719991-hannu) on Goodreads.

data/config/widgets.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[social_menu]
2+
title = ""
3+
platforms = ["github","gitlab","codepen","linkedin","email","facebook","twitter","instagram","telegram","google_scholar"]

themes/minimo

Submodule minimo added at 30e19ed

0 commit comments

Comments
 (0)