diff options
author | RayHammer <evkondratyev@yandex.ru> | 2022-10-20 18:57:38 +0200 |
---|---|---|
committer | RayHammer <evkondratyev@yandex.ru> | 2022-10-20 18:57:38 +0200 |
commit | 5fa9597734f5183863bde2a4eed35fb5b8f0f115 (patch) | |
tree | 74db6dcbc56a8b124592e098aea776509afb5393 /themes/stingray/layouts | |
parent | 1c4ff4d5e9f1d776fef066ae001b50fdd32dccda (diff) |
Added representative h-card
Diffstat (limited to 'themes/stingray/layouts')
-rw-r--r-- | themes/stingray/layouts/index.html | 14 | ||||
-rw-r--r-- | themes/stingray/layouts/partials/header.html | 4 |
2 files changed, 12 insertions, 6 deletions
diff --git a/themes/stingray/layouts/index.html b/themes/stingray/layouts/index.html index 31208e3..919ef99 100644 --- a/themes/stingray/layouts/index.html +++ b/themes/stingray/layouts/index.html @@ -1,9 +1,11 @@ {{ define "main" }} -<div class="text-center"> - <h1 class="title">{{ .Site.Title }}</h1> - {{ .Description }} -</div> -<div> - {{ .Content }} +<div id="card" class="h-card text-center"> + <a class="u-url u-uid" href="https://rayhammer.dev" rel="me"> + <img class="u-photo" src="img/rayhammer.jpg"> + </a> + <p> + <span class="p-nickname">RayHammer</span> + </p> </div> +{{ .Content }} {{ end }}
\ No newline at end of file diff --git a/themes/stingray/layouts/partials/header.html b/themes/stingray/layouts/partials/header.html index e69de29..5759242 100644 --- a/themes/stingray/layouts/partials/header.html +++ b/themes/stingray/layouts/partials/header.html @@ -0,0 +1,4 @@ +<div class="text-center"> + <h1 class="title">{{ .Site.Title }}</h1> + {{ .Site.Params.Description }} +</div>
\ No newline at end of file |