3
0
mirror of http://git.frickel.earth/Tysox/BOS-Pinneberg.git synced 2025-05-20 21:04:31 +02:00
BOS-Pinneberg_m/index.php
2019-10-15 17:12:57 +02:00

86 lines
3.0 KiB
PHP

<?php
include("include/header.php");
?>
<main class="mdl-layout__content">
<div class="mdl-layout__tab-panel is-active" id="feuerwehr">
<section class="section--center mdl-grid mdl-grid--no-spacing">
<div class="mdl-cell mdl-cell--12-col">
<h3>Feuerwehr</h3>
<?php include("include/ff.php");?>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="rettungsdienst">
<section class="section--center mdl-grid mdl-grid--no-spacing">
<div class="mdl-cell mdl-cell--12-col">
<h4>Rettungsdienst</h4>
<?php include("include/rettung.php"); ?>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="polizei">
<section class="section--center mdl-grid mdl-grid--no-spacing">
<div class="mdl-cell mdl-cell--12-col">
<h3>Polizei</h3>
<?php include("include/polizei.php"); ?>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="thw">
<section class="section--center mdl-grid mdl-grid--no-spacing">
<div class="mdl-cell mdl-cell--12-col">
<h3>THW</h3>
<?php include("include/thw.php"); ?>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="bos">
<section class="section--center mdl-grid mdl-grid--no-spacing">
<div class="mdl-cell mdl-cell--12-col">
<h3>Stichwörter</h3>
<?php include("include/stichwort.php"); ?>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="frz">
<section class="section--center mdl-grid mdl-grid--no-spacing">
<div class="mdl-cell mdl-cell--12-col">
<h3>Funkrufkennziffer</h3>
<?php include("include/funkrufkennziffer.php"); ?>
</div>
</section>
</div>
<div class="mdl-layout__tab-panel" id="fms">
<section class="section--center mdl-grid mdl-grid--no-spacing">
<div class="mdl-cell mdl-cell--12-col">
<h3>FMS-Status</h3>
<?php include("include/fms.php"); ?>
</div>
</section>
</div>
<footer class="mdl-mini-footer">
<div class="mdl-mini-footer__left-section">
<div class="mdl-logo">Title</div>
<ul class="mdl-mini-footer__link-list">
<li><a href="#">Help</a></li>
<li><a href="#">Privacy & Terms</a></li>
</ul>
</div>
</footer>
</main>
</div>
<script src="https://code.getmdl.io/1.3.0/material.min.js"></script>
</body>
</html>