ryoblog/site.tmpl

81 行
2.7 KiB
Cheetah

{{ define "header" }}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<meta name="author" content="{{ html .Site.Other.Author }}" />
<meta name="description" content="Ryo's opinions" />
<link rel="alternate" type="application/atom+xml" title="{{ html .Site.Other.Title }} feed" href="{{ .Rel "blog.atom" }}" />
<title>{{ .Site.Other.Title }}{{ if .Title }}: {{ .Title }}{{ end }}</title>
<link rel="stylesheet" type="text/css" href="{{ .Rel "static/style.css" }}" />
</head>
<body>{{ end }}
{{ define "container" }}<div class="container">
<div class="heading">寮居酒屋</div>{{ end }}
{{ define "footer" }} <br />
<hr />
<div class="footer">
<p>
Staff memeber of <a href="https://076.moe">076 AIB</a>.
</p>
<p>
Consider donating in Monero if you like my shit:
<pre><code>449MYQfPWYkRgJ8snRVAssTqh4VRKygUrhyoMbYrYJx5C4AE7dJcVt2aavGkxc9cfRUos1QzREAVLJBzBr3cAGGx28LN1so</code></pre>
</p>
</div>
</div>
</body>
</html>{{ end }}
{{define "date"}}{{ .Format "2006/01/02" }}{{end}}
{{ define "page" }}{{ template "header" . }}
{{ template "container" . }}
<p style="text-align: center;">
<a href="/">Blog</a> |
<a href="/about/">About me</a> |
<a href="/scams/">Scams</a> |
<a href="/faq/">The Fack</a> |
<a href="/codeofconduct/">The COCk</a> |
<a href="/dmca/">DMCA</a> |
<a href="/webring/">Webring</a> |
<a href="/glossary">Glossary</a>
</p>
<p style="text-align: center;">
<a href="/blog.atom">RSS Feeds</a> |
<a href="https://social.076.ne.jp/ryo">Soycial Media</a> |
<a href="https://video.076.ne.jp/c/ryo">PeerTube-chan</a>
</p>
<hr />
{{ .Content }}{{ template "footer" . }}{{ end }}
{{ define "post" }}<div class="header">
<h1>{{ .Title }}</h1>
<a href="/">Return to home</a>
<div class="info">
{{ .Other.Author }}、
{{ template "date" .Date }} &mdash;
{{ range $i, $t := .Tags }}{{if $i}},{{end}}
<a href="/tags/{{ $t }}/">{{ $t }}</a>{{ end }}
</div>
</div>
<hr />
<div class="section">
{{ .Content }}
</div>
{{ if .Other.Threadid }}
<div>
<a href="https://social.076.ne.jp/notice/{{ .Other.Threadid }}">Comment in SNS discussion here.</a>
<iframe src="https://comments.ryocafe.site/{{ .Other.Threadid }}" class="comment-iframe"></iframe>
</div>
{{ end }}
{{ end }}
{{define "tag"}}
# {{ .Title }} tag
{{ range .Site.Pages.WithTag .Title }}
- [{{ .Title }}](../../{{ .Url }})
{{ end }}
{{ end }}