codex/templates/post.html

39 lines
No EOL
646 B
HTML

<!doctype html>
<html>
<head>
<title>{{ .Title }}</title>
<link rel="icon" type="image/x-icon" href="/static/post.gif">
<style>
body {
margin: 25px;
}
img {
vertical-align: middle;
}
.content-container {
width: 100%;
display: flex;
justify-content: center;
}
.content {
max-width: 100ch;
}
</style>
</head>
<body>
<h1>Codex.os31.xyz{{ .BasePath }}/{{ .Title }}</h1>
<p>Last modified on {{ .TimeStamp }}</p>
<hr>
<div class="content-container">
<div class="content">{{ .Content }}</div>
</div>
<hr>
<img src="/static/folder.gif" alt="Back"> <a href="/{{ .ParentPath }}">Back</a>
</body>
</html>