mirror of
https://github.com/jhillyerd/inbucket.git
synced 2026-01-27 05:25:58 +00:00
The main index template renders now!
This commit is contained in:
45
themes/integral/templates/_base.html
Normal file
45
themes/integral/templates/_base.html
Normal file
@@ -0,0 +1,45 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<!--
|
||||
Design by Free CSS Templates
|
||||
http://www.freecsstemplates.org
|
||||
Released for free under a Creative Commons Attribution 2.5 License
|
||||
-->
|
||||
{{define "col1menu"}}{{/* Used inside #content div */}}
|
||||
<div id="colOne">
|
||||
<div id="logo">
|
||||
<h1><a href="#">inbucket</a></h1>
|
||||
<h2>email testing service</h2>
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>{{template "title" .}}</title>
|
||||
<link href="/public/main.css" rel="stylesheet" type="text/css" />
|
||||
<link rel="shortcut icon" type="image/png" href="/public/images/favicon.png">
|
||||
<script src="/public/jquery-1.5.2.min.js" type="text/javascript" charset="utf-8"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<ul id="menu">
|
||||
<li><a href="/" accesskey="1" title="">Home</a></li>
|
||||
<li><a href="/" accesskey="2" title="">About</a></li>
|
||||
</ul>
|
||||
<form id="search" action="/mailbox" method="GET">
|
||||
<fieldset>
|
||||
<input name="name" type="text" id="input1" />
|
||||
<input name="submit" type="submit" id="input2" value="Go" />
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
<div id="content">
|
||||
{{template "content" .}}
|
||||
</div>
|
||||
<div id="footer">
|
||||
<p>Inbucket is an open source project hosted at
|
||||
<a href="http://github.com/jhillyerd/inbucket/">github</a>.
|
||||
Design by <a href="http://www.freecsstemplates.org/">FCT</a>.</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user