-
Notifications
You must be signed in to change notification settings - Fork 2
/
template.html
65 lines (62 loc) · 2.1 KB
/
template.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Preisliste - FAU FabLab</title>
<link rel="icon" href="https://fablab.fau.de/wp-content/uploads/2017/02/cropped-fab_cube_whitebg_circle-1-32x32.png" sizes="32x32" />
<link rel="icon" href="https://fablab.fau.de/wp-content/uploads/2017/02/cropped-fab_cube_whitebg_circle-1-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon-precomposed" href="https://fablab.fau.de/wp-content/uploads/2017/02/cropped-fab_cube_whitebg_circle-1-180x180.png" />
<link type="text/css" rel="stylesheet" media="all" href="https://user.fablab.fau.de/~ev80uhys/web/faufablab-light.css">
<style>
tr {
transition: background 1s ease-in-out;
}
/* highlight current section (category or product) */
tr:target {
background: rgba(167,206,56,.75);
}
a#permalink {
opacity: 0;
transition: opacity .25s ease-in-out;
}
tr:hover a#permalink {
opacity: 1;
}
.header {
background: url(https://fablab.fau.de/wp-content/uploads/2017/02/cropped-fablab6-1-1024x614.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.logo img {
height: 3em;
}
</style>
</head>
<body>
<div id="header" class="header">
<div id="logo" class="logo">
<a href="https://fablab.fau.de">
<img src="https://fablab.fau.de/wp-content/uploads/2017/02/cropped-fab_cube_whitebg_circle-1-1.png" alt="Startseite">
</a>
</div>
<div id="menu" class="menu">
<nav>
<a href="https://fablab.fau.de">zurück zur FAU FabLab Webseite</a>
<a href="index.html">Übersicht aller Preislisten</a>
</nav>
</div>
</div>
<div id="content" class="content">
<h1>$HEADING</h1>
<table>
$CONTENTTABLE
</table>
</div>
<div id="bottom" class="bottom">
<p>Diese Liste wurde automatisch erzeugt am $REFRESHDATE. Fehler sind nicht ausgeschlossen.</p>
<p>Erzeugt mit <a href="https://github.com/fau-fablab/oerp-pricelist">oerp-pricelist</a>.</p>
</div>
</body>
</html>