2015-01-19 15:23:46 +00:00
|
|
|
{{define "page"}}
|
|
|
|
<html>
|
|
|
|
{{template "header" .}}
|
|
|
|
<body>
|
|
|
|
{{template "banner" .}}
|
|
|
|
{{template "toplinks" .}}
|
|
|
|
<div class='content'>
|
|
|
|
<!-- Content is HTML-escaped elsewhere -->
|
|
|
|
{{.Content}}
|
|
|
|
</div>
|
|
|
|
{{template "footer" .}}
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{define "header"}}
|
2011-01-03 23:49:19 +00:00
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
2017-12-16 01:00:54 +00:00
|
|
|
{{if .Domain}}
|
|
|
|
<meta name="go-import" content="{{.Domain}} git https://camlistore.googlesource.com/camlistore">
|
|
|
|
{{end}}
|
2012-06-16 17:20:32 +00:00
|
|
|
{{with $x := .Title}}
|
2017-12-14 04:08:43 +00:00
|
|
|
<title>{{$x}} - Perkeep</title>
|
2012-06-16 17:20:32 +00:00
|
|
|
{{else}}
|
2017-12-14 04:08:43 +00:00
|
|
|
<title>Perkeep</title>
|
2012-06-16 17:20:32 +00:00
|
|
|
{{end}}
|
2013-03-14 00:42:56 +00:00
|
|
|
<!-- TODO(mpl): figure out why Index does not toggle (like Overview) -->
|
2011-01-03 23:49:19 +00:00
|
|
|
<link rel="stylesheet" href="/static/all.css" type="text/css" media="all" charset="utf-8">
|
2014-02-06 22:14:19 +00:00
|
|
|
<link href='//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700' rel='stylesheet' type='text/css'>
|
2011-01-29 18:59:25 +00:00
|
|
|
<script type="text/javascript" src="/static/all-async.js" async="true"></script>
|
2013-03-14 00:42:56 +00:00
|
|
|
<script type="text/javascript" src="/static/godocs.js"></script>
|
2011-01-03 23:49:19 +00:00
|
|
|
</head>
|
2015-01-19 15:23:46 +00:00
|
|
|
{{end}}
|
2011-01-03 23:49:19 +00:00
|
|
|
|
2015-01-19 15:23:46 +00:00
|
|
|
{{define "banner"}}
|
2011-01-24 05:48:04 +00:00
|
|
|
<div id='header'>
|
2017-12-15 17:57:42 +00:00
|
|
|
<a href="/"><img width='788' height='161' src='/static/camli-header.jpg' title="Perkeep" border='0' /></a>
|
2011-01-24 05:48:04 +00:00
|
|
|
</div>
|
2015-01-19 15:23:46 +00:00
|
|
|
{{end}}
|
2011-01-03 23:49:19 +00:00
|
|
|
|
2015-01-19 15:23:46 +00:00
|
|
|
{{define "toplinks"}}
|
2011-01-24 05:48:04 +00:00
|
|
|
<div class='bar'><div class='hatecss'>
|
2014-02-06 22:14:19 +00:00
|
|
|
<a href='/'>Home</a>
|
2013-06-22 14:49:56 +00:00
|
|
|
<a href='/download'>Download</a>
|
2016-04-26 16:46:07 +00:00
|
|
|
<a href='/doc/'>Docs</a>
|
2013-08-14 16:59:31 +00:00
|
|
|
<a href='/code'>Code</a>
|
2014-02-06 22:14:19 +00:00
|
|
|
<a href='/community'>Community</a>
|
2011-01-24 05:48:04 +00:00
|
|
|
</div></div>
|
2015-01-19 15:23:46 +00:00
|
|
|
{{end}}
|
2011-01-03 23:49:19 +00:00
|
|
|
|
2015-01-19 15:23:46 +00:00
|
|
|
{{define "footer"}}
|
2011-01-24 05:48:04 +00:00
|
|
|
<div class='bar'><div class='hatecss'>
|
|
|
|
</div></div>
|
|
|
|
<div id='props'>
|
2011-01-28 07:47:44 +00:00
|
|
|
Website layout inspired by <a href="http://git-scm.com/">git</a> and <a href="http://memcached.org/">memcached</a>,<br />
|
|
|
|
design done by <a href="http://upallday.com/">up all day</a> creative solutions.<br />
|
|
|
|
Content by <a href="/contributors">the authors</a>.
|
2011-01-24 05:48:04 +00:00
|
|
|
</div>
|
2015-01-19 15:23:46 +00:00
|
|
|
{{end}}
|