summaryrefslogtreecommitdiff
path: root/layouts/partials/external_link.html
blob: 5b3277f92f95b5bbe6db832aed3827c34ecb0227 (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 = "Star Trek" }}
{{ else if eq .Section "bsd" }}
  {{ $section = "Guide to BSD" }}
{{ end }}

I published <a href="{{ .Permalink }}">"{{ .Title }}"</a> on {{ $section }}