mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-08 21:25:56 +01:00
9 lines
242 B
HTML
9 lines
242 B
HTML
{{- $font := .Get 0 -}}
|
|
<link rel="stylesheet" href="/css/{{ $font }}.css">
|
|
{{- if strings.Contains .Inner "\n" }}
|
|
<div class="{{ $font }}">
|
|
{{ .Inner }}
|
|
</div>
|
|
{{- else -}}
|
|
<span class="{{ $font }}">{{ .Inner }}</span>
|
|
{{- end -}}
|