GoGronkh/gserver/templates/header.html
Andreas Mieke 3d7b148679 Removing empty LPs from webapp
Also adding update.sh for easy server-side update
2015-09-26 13:49:00 +02:00

47 lines
1.9 KiB
HTML

<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gronkh.DE Mirror{{ if .title }} — {{ .title }}{{ end }}</title>
<link rel="stylesheet" href="/assets/css/foundation.min.css" />
<link rel="stylesheet" href="/assets/css/font-awesome.min.css" />
<link rel="stylesheet" href="/assets/css/gronkh.css" />
<script src="/assets/js/vendor/modernizr.js"></script>
</head>
<body>
<div class="contain-to-grid sticky">
<nav class="top-bar" data-topbar role="navigation" data-options="sticky_on: large">
<ul class="title-area">
<li class="name">
<h1><a href="/">Gronkh.DE <sub>Mirror</sub></a></h1>
</li>
<li class="toggle-topbar menu-icon"><a href="/"><span>Menu</span></a></li>
</ul>
<section class="top-bar-section">
<ul class="right">
<li class="has-form">
<input id="search" type="search" placeholder="Suche" data-dropdown="searchhints" autocomplete="off">
</li>
</ul>
<ul class="left">
<li {{ if eq .title "Let's Plays" }}class="active"{{ end }}><a href="/lets-play/">Let's Plays</a></li>
<li {{ if eq .title "Let's Tests" }}class="active"{{ end }}><a href="/testet/">Let's Tests</a></li>
<li {{ if eq .title "Sprecher" }}class="active"{{ end }}><a href="/zeige/">Sprecher</a></li>
</ul>
</section>
</nav>
<ul id="searchhints" class="small f-dropdown show-for-medium-up" data-dropdown-content>
</ul>
</div>
{{ if .message }}
<div class="row">
<div class="large-12 columns">
<div data-alert class="alert-box {{ .message.Type }} radius">
{{ .message.String }}
<a href="#" class="close">&times;</a>
</div>
</div>
</div>
{{ end }}