35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
|
{{define "head"}}
|
||
|
<title>{{.Title}} - ari melody 💫</title>
|
||
|
<link rel="shortcut icon" href="/img/favicon.png" type="image/x-icon">
|
||
|
|
||
|
<meta name="description" content="{{.Description}}">
|
||
|
|
||
|
<meta property="og:title" content="{{.Title}}">
|
||
|
<meta property="og:type" content="article">
|
||
|
<meta property="og:url" content="www.arimelody.me/blog/{{.Date.Year}}/{{.GetMonth}}/{{.TitleNormalised}}">
|
||
|
<meta property="og:image" content="https://www.arimelody.me/img/favicon.png">
|
||
|
<meta property="og:site_name" content="ari melody">
|
||
|
<meta property="og:description" content="{{.Description}}">
|
||
|
|
||
|
<link rel="stylesheet" href="/style/main.css">
|
||
|
<link rel="stylesheet" href="/style/index.css">
|
||
|
<link rel="stylesheet" href="/style/blog.css">
|
||
|
{{end}}
|
||
|
|
||
|
{{define "content"}}
|
||
|
<main>
|
||
|
<article class="blog">
|
||
|
<h1 class="typeout">{{.Title}}</h1>
|
||
|
<p class="blog-date">Posted by <a href="/blog/{{.AuthorID}}">{{.AuthorID}}</a> @ {{.PrintDate}}</p>
|
||
|
|
||
|
<hr>
|
||
|
{{.HTML}}
|
||
|
<hr>
|
||
|
|
||
|
<!-- comments section here! -->
|
||
|
</article>
|
||
|
|
||
|
<script type="module" src="/script/blog.js"></script>
|
||
|
</main>
|
||
|
{{end}}
|