aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/profile.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/layouts/partials/profile.html')
-rw-r--r--themes/default/layouts/partials/profile.html52
1 files changed, 52 insertions, 0 deletions
diff --git a/themes/default/layouts/partials/profile.html b/themes/default/layouts/partials/profile.html
new file mode 100644
index 0000000..b20159f
--- /dev/null
+++ b/themes/default/layouts/partials/profile.html
@@ -0,0 +1,52 @@
+{{ $author := index .Site.Data.authors ((or .Params.author .Site.Author.default.user) | default "default") }}
+
+<micro-header>
+
+ <micro-header-image>
+ <picture>
+ <img alt="{{ .Title }}" src="/{{ partial "author-media-path.html" . }}/profile/header.jpg" />
+ </picture>
+ </micro-header-image>
+
+ <micro-header-picture>
+ <picture>
+ <img src="/{{ partial "author-media-path.html" . }}/profile/picture.png"/>
+ </picture>
+ </micro-header-picture>
+
+ <section>
+ <micro-header-title>
+ <h1>{{ $author.name }}</h1>
+ <h2>@{{ $author.user }}</h2>
+ </micro-header-title>
+ <micro-header-description>
+ <p>
+ {{ $author.description | markdownify }}
+ </p>
+ </micro-header-description>
+ </section>
+
+ <footer>
+ <p>
+ {{ safeHTML (readFile "static/icons/feather/map-pin.svg") }}
+ <span>{{- $author.place | markdownify -}}</span>
+ </p>
+ <p>
+ {{ safeHTML (readFile "static/icons/feather/globe.svg") }}
+ <a href="{{ $author.domain.url }}">
+ {{- $author.domain.host | markdownify -}}
+ </a>
+ </p>
+ <p>
+ {{ safeHTML (readFile "static/icons/feather/clock.svg") }}
+ <span>{{- $author.epoch | markdownify -}}</span>
+ </p>
+ <p>
+ {{ safeHTML (readFile "static/icons/feather/user.svg") }}
+ <span><b>{{ with $author.webring.rss }}{{ len . }}{{ else }} 0 {{ end }}</b> Following</span>
+ </p>
+ </footer>
+
+</micro-header>
+
+{{ partial "profile-tabs.html" . }}