100 lines
2.8 KiB
HTML
100 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ .Title }} - {{ .User.Config.Title }}</title>
|
|
|
|
{{ if .User.FaviconUrl }}
|
|
<link rel="icon" href="{{ .User.FaviconUrl }}">
|
|
{{ else }}
|
|
<link rel="icon" href="data:,">
|
|
{{ end }}
|
|
|
|
<meta property="og:title" content="{{ .Title }}" />
|
|
{{ if .Description }}
|
|
<meta name="description" content="{{ .Description }}">
|
|
<meta property="og:description" content="{{ .Description }}" />
|
|
{{ end }}
|
|
{{ if .Type }}
|
|
<meta property="og:type" content="{{ .Type }}" />
|
|
{{ end }}
|
|
{{ if .SelfUrl }}
|
|
<meta property="og:url" content="{{ .SelfUrl }}" />
|
|
{{ end }}
|
|
|
|
<link rel="stylesheet" href="/static/pico.min.css">
|
|
<link rel="webmention" href="{{ .User.WebmentionUrl }}">
|
|
{{ if .User.AuthUrl }}
|
|
<link rel="indieauth-metadata" href="{{ .User.IndieauthMetadataUrl }}">
|
|
<link rel="authorization_endpoint" href="{{ .User.AuthUrl}}">
|
|
<link rel="token_endpoint" href="{{ .User.TokenUrl}}">
|
|
<link rel="micropub" href="{{ .User.MicropubUrl}}">
|
|
{{ end }}
|
|
<style>
|
|
header {
|
|
background-color: {{.User.Config.HeaderColor}};
|
|
}
|
|
|
|
footer {
|
|
border-top: dashed 2px;
|
|
border-color: #ccc;
|
|
}
|
|
|
|
.avatar {
|
|
float: left;
|
|
margin-right: 1rem;
|
|
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.header-title {
|
|
order: 0;
|
|
}
|
|
|
|
.header-profile {
|
|
order: 1;
|
|
}
|
|
|
|
hgroup h2 a { color: inherit; }
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<div class="container header h-card">
|
|
<hgroup class="header-title">
|
|
<h2><a class="p-name u-url" href="{{ .User.UrlPath }}">{{ .User.Config.Title }}</a></h2>
|
|
<h3 class="p-note">{{ .User.Config.SubTitle }}</h3>
|
|
</hgroup>
|
|
|
|
<div class="header-profile">
|
|
{{ if .User.AvatarUrl }}
|
|
<img class="u-photo u-logo avatar" src="{{ .User.AvatarUrl }}" alt="{{ .User.Config.Title }}" width="100" height="100" />
|
|
{{ end }}
|
|
<div style="float: right; list-style: none;">
|
|
{{ range $me := .User.Config.Me }}
|
|
<li><a href="{{$me.Url}}" rel="me">{{$me.Name}}</a>
|
|
</li>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</header>
|
|
<main class="container">
|
|
{{ .Content }}
|
|
</main>
|
|
<footer class="container">
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |