mirror of
				http://git.frickel.earth/Tysox/BOS-Pinneberg.git
				synced 2025-10-30 17:12:10 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.6 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>
 | |
|         <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>
 | |
| 
 | |
| 
 | |
|         <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>
 |