blob: 3eee5d1223ff3601f0940dee2c2a0ae98dd43c54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{{ $section := "some other site" }}
{{ if eq .Section "cool-emacs" }}
{{ $section = "Cool Emacs" }}
{{ else if eq .Section "brain-rot" }}
{{ $section = "Brain Rots" }}
{{ else if eq .Section "unix-history" }}
{{ $section = "Unix History" }}
{{ else if eq .Section "star-trek" }}
{{ $section = "Notes on Star Trek" }}
{{ else if eq .Section "bsd" }}
{{ $section = "Guide to BSD" }}
{{ end }}
I published <a href="{{ .Permalink }}">"{{ .Title }}"</a> on {{ $section }}
|