very simple webpage built with hugo with links to all of my profiles. wobblybrian.xyz

i get jealous when i see young people being affectionate

+3 -39
+1 -2
content/_index.md
··· 1 1 --- 2 - title: home 3 - description: welcome to my wobbly litle website 2 + title: talk to & follow me 4 3 ---
+2 -1
hugo.toml
··· 1 1 baseurl = "https://wobblybrian.xyz" 2 2 languageCode = "en-ie" 3 3 title = "wobbly brian" 4 + disableKinds = ['taxonomy'] 4 5 5 6 [params] 6 - description = "wobbly brian" 7 + description = "all of my online profiles" 7 8 images = ['og.jpg'] 8 9 9 10 # talk
-1
layouts/home.html
··· 37 37 <p class="caption">{{ .Params.handle }}</p> 38 38 </div> 39 39 </a> 40 - 41 40 {{ end }} 42 41 </div> 43 42
-21
layouts/list.html
··· 1 - {{ define "main" }} 2 - 3 - <div class="container"> 4 - 5 - <div class="info"> 6 - <h1>{{ .Title | markdownify }}</h1> 7 - <p>{{ .Description }}</p> 8 - </div> 9 - 10 - <div class="grid"> 11 - {{- range.Data.Pages -}} 12 - <a class="card" href="{{ .RelPermalink }}"> 13 - <p>{{ .Name }}</p> 14 - <p class="caption">{{ .Date.Format "January 2, 2006" }}</p> 15 - </a> 16 - {{ end }} 17 - </div> 18 - 19 - </div> 20 - 21 - {{ end }}
-14
layouts/single.html
··· 1 - {{ define "main" }} 2 - 3 - <div class="container"> 4 - 5 - <div class="info"> 6 - <h1>{{ .Title | markdownify }}</h1> 7 - <p>{{ .Description }}</p> 8 - </div> 9 - 10 - {{ .Content }} 11 - 12 - </div> 13 - 14 - {{ end }}