takunomi-blog/blog.tmpl

37 lines
1.4 KiB
Cheetah
Raw Normal View History

2017-11-07 11:16:35 +00:00
{{define "blog"}}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{{.Title}}</title>
<!--<link rel="stylesheet" href="style.css">-->
<style>{{template "style"}}</style>
</head>
<body>
2017-11-19 14:02:18 +00:00
<h1><a class="title" href="/" style="text-decoration: none; color: inherit">{{.Title}}</a></h1>
2017-11-07 11:16:35 +00:00
<div class="tagline">
<p>Develop games, play games, talk games</p>
</div>
<div class="menu">
<ul id="menu">
2017-11-21 21:01:38 +00:00
<li><a class={{if eq .CurrentPage "blog"}}"menuselect menuElement no-link"{{else}}"menuElement no-link"{{end}} href="/">blog</a></li>
<li><a class={{if eq .CurrentPage "about"}}"menuselect menuElement no-link"{{else}}"menuElement no-link"{{end}} href="/about">about</a></li>
<li><a class={{if eq .CurrentPage "past"}}"menuselect menuElement no-link"{{else}}"menuElement no-link"{{end}} href="/past">past</a></li>
<li><a class={{if eq .CurrentPage "contact"}}"menuselect menuElement no-link"{{else}}"menuElement no-link"{{end}} href="/contact">contact</a></li>
</ul>
2017-11-07 11:16:35 +00:00
</div>
2017-11-19 14:02:18 +00:00
<div class="contents">
{{if eq .CurrentPage "blog"}}
<article class="posts">{{template "content" .}}</article>
{{else if eq .CurrentPage "about"}}
<div>{{template "about" .}}</div>
{{else if eq .CurrentPage "past"}}
<div>{{template "past" .}}</div>
2017-11-20 13:37:08 +00:00
{{else if eq .CurrentPage "contact"}}
<div>{{template "contact" .}}</div>
2017-11-19 14:02:18 +00:00
{{end}}
</div>
2017-11-07 11:16:35 +00:00
</body>
</html>
2017-11-19 14:02:18 +00:00
{{end}}