forked from NetCoreApps/TemplatePages
-
Notifications
You must be signed in to change notification settings - Fork 6
/
_layout.html
40 lines (34 loc) · 909 Bytes
/
_layout.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE HTML>
<html>
<head>
<title>Dead Rockstars - {{ title }}</title>
<link href="../../default.css" rel="stylesheet" />
<style type="text/css">
body {
background: #ACDBCE url(../../img/tileable_wood_texture.png);
background-attachment: fixed;
}
a {
color: #a30;
}
</style>
</head>
<body>
<a id="back" href="../../../content-websites">← Content Websites</a>
<div id="page">
<div id="info">
<h6>Rocking the grave...</h6>
<p>
<a id="home" href="../../"></a>
</p>
</div>
<h1>{{ title }}</h1>
{{ "menu-dead" |> partial }}
<div id="content">
{{ page }}
<b class="clear"></b>
</div>
{{ "menu-alive" |> partial }}
</div>
</body>
</html>