-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
145 lines (121 loc) · 5.59 KB
/
index.php
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<?php include '_partial__head.php' ?>
<body>
<div class="container">
<div class="header clearfix">
<h3 class="logo">
Allergenliste.de
</h3>
</div>
<section class="well row">
<div class="col-sm-5 col-xs-6 col-md-5">
<img src="images/photodune-14407958-chef-s.jpg" alt="Skeptisch schauender Mann mit Kochmütze in klassischer Kochbekleidung" class="der-koch img-responsive">
</div>
<div class="der-koch__text col-sm-7 col-xs-12 col-md-7">
<h2 id="textSample-1">„Das kapiert doch kein Mensch.”</h2>
<p class="lead">
Die EU-Allergenkennzeichnung in Ihrer Gastronomie umzusetzen ist nicht schwer.
</p>
<p class="lead">
Verpflichtend seit bereits <em><span id="dayCounterLMIV"></span> Tagen</em>.
</p>
</div>
</section>
<div class="row marketing">
<div class="col-md-12">
<h2 style="margin-bottom: 30px;">14 Hauptallergene</h2>
</div>
<div class="col-sm-6">
<div class="list-group">
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalGluten">
Glutenhaltiges Getreide
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalEier">
Eier
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalMilch">
Milch
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalSchalenfruechte">
Schalenfrüchte
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalErdnuesse">
Erdnüsse
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalSojabohnen">
Soja
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalSellerie">
Sellerie
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
</div>
</div>
<div class="col-sm-6">
<div class="list-group">
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalSenf">
Senf
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalFische">
Fische
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalKrebstiere">
Krebstiere
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalWeichtiere">
Weichtiere
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalSesam">
Sesam
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalSchwefel">
Schwefeldioxid und Sulfite
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
<button type="button" class="list-group-item" data-toggle="modal" data-target="#modalLupinen">
Lupinen
<span class="glyphicon glyphicon-menu-right pull-right"></span>
</button>
</div>
</div>
<!-- Start Modal content -->
<?php include '_modal__gluten.php' ?>
<?php include '_modal__eier.php' ?>
<?php include '_modal__milch.php' ?>
<?php include '_modal__schalenfruechte.php' ?>
<?php include '_modal__erdnuesse.php' ?>
<?php include '_modal__sojabohnen.php' ?>
<?php include '_modal__sellerie.php' ?>
<?php include '_modal__senf.php' ?>
<?php include '_modal__fische.php' ?>
<?php include '_modal__krebstiere.php' ?>
<?php include '_modal__weichtiere.php' ?>
<?php include '_modal__sesam.php' ?>
<?php include '_modal__schwefel.php' ?>
<?php include '_modal__lupinen.php' ?>
<!-- End Modal content -->
</div>
<section class="row marketing">
<div class="col-md-12 text-center">
<p>
Ein Informationsangebot von <a href="http://www.allergolink.de" target="_blank">Allergolink, deinem Onlineprofil für sorgenfreies Essen</a>.
</p>
</div>
</section>
<?php include '_partial__footer.php' ?>
</div> <!-- /container -->
<?php include '_partial__scripts.php' ?>
</body>
</html>