summaryrefslogtreecommitdiffstats
path: root/_layout.template.html
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2014-07-04 15:16:26 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2014-07-04 15:16:26 +0200
commit157c8d99ebae07a2afaa45ede964b6ab9cf9fa8c (patch)
treeb6aeb3aee229bb9abdafe55e05097e6b550abba2 /_layout.template.html
parent27117c6b3c0b0db68a21428302c5a0928533dea6 (diff)
downloadalpine-mksite-157c8d99ebae07a2afaa45ede964b6ab9cf9fa8c.tar.bz2
alpine-mksite-157c8d99ebae07a2afaa45ede964b6ab9cf9fa8c.tar.xz
add makefile and initial test data
Diffstat (limited to '_layout.template.html')
-rw-r--r--_layout.template.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/_layout.template.html b/_layout.template.html
new file mode 100644
index 0000000..e3ee1e5
--- /dev/null
+++ b/_layout.template.html
@@ -0,0 +1,37 @@
+<!doctype html>
+<html>
+<head>
+<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
+<title>{{title}} | Alpine Linux</title>
+<link rel="stylesheet" type="text/css" href="/styles.css"/>
+<link rel="stylesheet" type="text/css" href="/font.css"/>
+</head>
+<body>
+ <section id="page">
+ <header>
+ <span class="icon-alpine-logo"></span>
+ <div class="right">
+ <span>Simple Small Secure</span>
+ <nav>
+ <span class="right">
+ <a href="http://wiki.alpinelinux.org">wiki</a>
+ <a href="http://git.alpinelinux.org">git</a>
+ <a href="http://bugs.alpinelinux.org">bugs</a>
+ </span>
+ </nav>
+ </div>
+ </header>
+ <nav>
+ <a href="/" class="{{pagestate.index}}">home</a>
+ <a href="/downloads" class="{{pagestate.downloads/index}}">downloads</a>
+ <a href="/about" class="{{pagestate.about/index}}">about</a>
+ <a href="/community" class="{{pagestate.community/index}}">community</a>
+ </nav>
+ <article>
+ {{{content}}}
+ </article>
+ <footer>© Copyright 2014 Alpine Linux Development Team all rights reserved | Privacy Policy
+ </footer>
+ </section>
+</body>
+</html>