ok
This commit is contained in:
parent
7300ecf098
commit
b2691befae
2 changed files with 32 additions and 17 deletions
8
map.css
8
map.css
|
@ -14,3 +14,11 @@ html, body {
|
||||||
.leaflet-control-zoom {
|
.leaflet-control-zoom {
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.leaflet-popup-content-wrapper {
|
||||||
|
width: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
width: 14%;
|
||||||
|
}
|
||||||
|
|
41
map.html
41
map.html
|
@ -16,24 +16,31 @@
|
||||||
<script id="popup-template" type="text/x-handlebars-template">
|
<script id="popup-template" type="text/x-handlebars-template">
|
||||||
<div id="resto-popup">
|
<div id="resto-popup">
|
||||||
<h3>{{name}}</h3>
|
<h3>{{name}}</h3>
|
||||||
<ul>
|
Waar: {{address}}<br />
|
||||||
<li><b>Adres:</b> {{address}}</li>
|
Plaatsen: {{capacity}}<br />
|
||||||
<li><b>Capaciteit:</b> {{capacity}}</li>
|
Van {{period.start}} tot {{period.end}}<br />
|
||||||
<li><b>Periode:</b> Van {{period.start}} tot {{period.end}}</li>
|
<table>
|
||||||
</ul>
|
<tr>
|
||||||
|
<td>Maandag</td>
|
||||||
|
<td>Dinsdag</td>
|
||||||
|
<td>Woensdag</td>
|
||||||
|
<td>Donderdag</td>
|
||||||
|
<td>Vrijdag</td>
|
||||||
|
<td>Zaterdag</td>
|
||||||
|
<td>Zondag</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>{{#if hours.monday}}{{hours.monday}}{{else}}--{{/if}}</td>
|
||||||
|
<td>{{#if hours.tuesday}}{{hours.tuesday}}{{else}}--{{/if}}</td>
|
||||||
|
<td>{{#if hours.wednesday}}{{hours.wednesday}}{{else}}--{{/if}}</td>
|
||||||
|
<td>{{#if hours.thursday}}{{hours.thursday}}{{else}}--{{/if}}</td>
|
||||||
|
<td>{{#if hours.friday}}{{hours.friday}}{{else}}--{{/if}}</td>
|
||||||
|
<td>{{#if hours.saturday}}{{hours.saturday}}{{else}}--{{/if}}</td>
|
||||||
|
<td>{{#if hours.sunday}}{{hours.sunday}}{{else}}--{{/if}}</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
Openingsuren
|
{{extra}}
|
||||||
<ul>
|
|
||||||
<li><b>Maandag:</b> {{hours.monday}}</li>
|
|
||||||
<li><b>Dinsdag:</b> {{hours.tuesday}}</li>
|
|
||||||
<li><b>Woensdag:</b> {{hours.wednesday}}</li>
|
|
||||||
<li><b>Donderdag:</b> {{hours.thursday}}</li>
|
|
||||||
<li><b>Vrijdag:</b> {{hours.friday}}</li>
|
|
||||||
<li><b>Zaterdag:</b> {{hours.saturday}}</li>
|
|
||||||
<li><b>Zondag:</b> {{hours.sunday}}</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
Extra: {{extra}}
|
|
||||||
</div>
|
</div>
|
||||||
</script>
|
</script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
Loading…
Reference in a new issue