<!DOCTYPE html> 
 | 
<!-- 
 | 
  Mediazentrale - Personal Media Center 
 | 
  Copyright (C) 2021  Ulrich Hilger 
 | 
  
 | 
  This program is free software: you can redistribute it and/or modify 
 | 
  it under the terms of the GNU Affero General Public License as 
 | 
  published by the Free Software Foundation, either version 3 of the 
 | 
  License, or (at your option) any later version. 
 | 
  
 | 
  This program is distributed in the hope that it will be useful, 
 | 
  but WITHOUT ANY WARRANTY; without even the implied warranty of 
 | 
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
 | 
  GNU Affero General Public License for more details. 
 | 
  
 | 
  You should have received a copy of the GNU Affero General Public License 
 | 
  along with this program.  If not, see <https://www.gnu.org/licenses/>. 
 | 
--> 
 | 
<html> 
 | 
  <head> 
 | 
    <title>Mediazentrale</title> 
 | 
    <meta charset="UTF-8"> 
 | 
    <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
 | 
    <meta name="apple-mobile-web-app-capable" content="yes" /> 
 | 
    <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet"> 
 | 
    <link rel="stylesheet" type="text/css" href="app-menu.css"> 
 | 
    <link rel="stylesheet" type="text/css" href="hamburger.css"> 
 | 
    <link rel="stylesheet" type="text/css" href="app.css"> 
 | 
  </head> 
 | 
  <body> 
 | 
    <!-- Kopfzeile --> 
 | 
    <div class="nord"> 
 | 
      <div id="nav-menu"> 
 | 
        <div id="nav-toggle" class="hamburger hamburger--elastic"> 
 | 
          <div class="hamburger-box"> 
 | 
            <div class="hamburger-inner"></div> 
 | 
          </div> 
 | 
        </div> 
 | 
      </div> 
 | 
      <div class="app-titel"> 
 | 
        <span id="app-titel">Mediazentrale</span> 
 | 
      </div> 
 | 
    </div> 
 | 
    <div class="inhalt"> 
 | 
      <!-- westliche Seitenleiste --> 
 | 
      <div class="west"> 
 | 
        westliche Seitenleiste 
 | 
      </div> 
 | 
      <div class="zentrum-behaelter"> 
 | 
        <!-- Einblendbereich --> 
 | 
        <div class="dialog"></div> 
 | 
        <!-- zentraler Inhaltsbereich --> 
 | 
        <div class="zentrum"> 
 | 
          <div class="zentraler-inhalt"> 
 | 
            <p> 
 | 
              Hier erscheint der Media-Inhalt. 
 | 
            </p> 
 | 
          </div> 
 | 
        </div> 
 | 
      </div> 
 | 
      <!-- oestliche Seitenleiste --> 
 | 
      <div class="ost ost-open"> 
 | 
        östliche Seitenleiste 
 | 
      </div> 
 | 
    </div> 
 | 
    <!-- Fusszeile --> 
 | 
    <div class="sued sued-open"> 
 | 
      Fußzeile 
 | 
    </div> 
 | 
    <!-- Skripte --> 
 | 
    <script src="js/mustache/mustache.min.js"></script> 
 | 
    <script src="js/app-menu.js"></script> 
 | 
    <!-- <script src="js/vorlagen.js"></script> --> 
 | 
    <script src="js/app.js"></script> 
 | 
    <script> 
 | 
        var app; 
 | 
        document.addEventListener('DOMContentLoaded', function () { 
 | 
            app = new Mediazentrale(); 
 | 
            app.init(); 
 | 
        }); 
 | 
    </script> 
 | 
  </body> 
 | 
</html> 
 |