quotesite/src/templates/layout.mustache

17 lines
386 B
Plaintext
Raw Normal View History

2016-02-05 18:40:26 +00:00
<!doctype html>
<title>quotes{{# title }} - {{ title }}{{/ title }}</title>
2016-02-06 05:02:12 +00:00
<link rel=stylesheet type=text/css href="/style.css">
2016-02-05 18:40:26 +00:00
<div class=page>
2016-02-06 05:20:35 +00:00
<h1><a href="/">quotes</a></h1>
2016-02-05 18:40:26 +00:00
<div class=metanav>
<a href="/">home</a>
<a href="/channel">channel</a>
2016-02-06 05:12:20 +00:00
<!-- <a href="/submit">submit</a> -->
2016-02-05 18:40:26 +00:00
</div>
2016-02-06 05:20:35 +00:00
<h2>{{# title }}{{ title }}{{/ title }}</h2>
2016-02-05 18:40:26 +00:00
{{{ body }}}
</div>