mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-09 01:35:56 +01:00
29 lines
971 B
HTML
29 lines
971 B
HTML
{{ define "body" }}
|
|
<body class="{{ if .Site.Params.backgroundImage }} background-image" style="background-image: url('{{ .Site.Params.backgroundImage }}');" {{ else }}"{{ end }}>
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<main aria-role="main">
|
|
<div>
|
|
{{ if .Site.Params.Portrait.Path }}
|
|
<img src="{{ .Site.Params.Portrait.Path }}" class="circle" alt="{{ .Site.Params.Portrait.Alt }}" style="max-width:{{ .Site.Params.Portrait.MaxWidth }}" />
|
|
{{ end }}
|
|
|
|
<h1 class="accented">{{ .Site.Title }}</h1>
|
|
|
|
{{ partial "subtitle.html" . }}
|
|
|
|
{{- with .Site.Params.social }}
|
|
<div class="social">
|
|
{{ partial "social-icons.html" . }}
|
|
</div>
|
|
{{- end }}
|
|
</div>
|
|
<br />
|
|
<hr />
|
|
<section class="posts" style="text-align:center">
|
|
{{ partial "about-me.html" .}}
|
|
</section>
|
|
|
|
</main>
|
|
{{ end }}
|