6 lines
193 B
HTML
6 lines
193 B
HTML
|
{{ $avatar := resources.Get .Site.Params.profile_picture }}
|
||
|
{{ with $avatar }}
|
||
|
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}"/>
|
||
|
{{ end }}
|
||
|
<h1>{{ .Site.Title }}</h1>
|