summaryrefslogtreecommitdiffstats
path: root/_default.template.html
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2014-09-19 15:05:10 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2014-09-19 15:05:10 +0200
commit1c9275434833a23f6ba7cc5c0e0d10d2879b96fa (patch)
treed963f1094070e8fc63a0380a1a9c343a278803c3 /_default.template.html
parentcbb27e8bc159fc7abc4bc23e58cdb704f1759b27 (diff)
downloadmksite-alpine-1c9275434833a23f6ba7cc5c0e0d10d2879b96fa.tar.bz2
mksite-alpine-1c9275434833a23f6ba7cc5c0e0d10d2879b96fa.tar.xz
default template: simplify
remove the section with id "page" wrap the article in a div with overflow-x hidden
Diffstat (limited to '_default.template.html')
-rw-r--r--_default.template.html8
1 files changed, 3 insertions, 5 deletions
diff --git a/_default.template.html b/_default.template.html
index 2cca1a8..e416d37 100644
--- a/_default.template.html
+++ b/_default.template.html
@@ -7,7 +7,6 @@
<link rel="stylesheet" type="text/css" href="/font.css"/>
</head>
<body>
- <section id="page">
<header>
<span class="icon-alpine-logo"></span>
<div class="right">
@@ -27,11 +26,10 @@
<a href="/about" class="{{pagestate.about/index}}">about</a>
<a href="/community" class="{{pagestate.community/index}}">community</a>
</nav>
- <article>
- {{{content}}}
- </article>
+ <div class="hidden">
+ <article>{{{content}}}</article>
+ </div>
<footer>© Copyright 2014 Alpine Linux Development Team all rights reserved | Privacy Policy
</footer>
- </section>
</body>
</html>