mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-21 00:23:57 +01:00
Creates a (currently hidden) calendar page for me to show the events I am or might go to, with an invitation for others to get in touch if they want to join me.
6 lines
343 B
HTML
6 lines
343 B
HTML
{{ $parts := strings.Split . "." }}
|
|
{{ with index site.Data.friends (index $parts 0) }}
|
|
<span class="h-card{{ range collections.Last (sub (len $parts) 1) $parts }} {{.}}{{ end }}"><a href="{{.site}}" rel="{{.xfn}}" class="u-url p-name" target="_blank">{{.name}}</a></span>
|
|
{{ else }}
|
|
{{ errorf "Could not display friend %s" . }}
|
|
{{ end }}
|