GoGronkh/gserver/templates/header.html
Andreas Mieke 1ec04dcabd Adding better Microdata
Also removiung alt texts from images
2015-09-29 20:01:20 +02:00

47 lines
1.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>{{ if .title }}{{ .title }} {{ end }}Gronkh.de Mirror</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 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 }}