Persoenliche Mediazentrale
ulrich
2021-04-07 cf65097eb1b5ecd25fe05416be24c196868f15e8
commit | author | age
cfa858 1 <!DOCTYPE html>
b379f5 2 <!--
U 3   Mediazentrale - Personal Media Center
4   Copyright (C) 2021  Ulrich Hilger
5
6   This program is free software: you can redistribute it and/or modify
7   it under the terms of the GNU Affero General Public License as
8   published by the Free Software Foundation, either version 3 of the
9   License, or (at your option) any later version.
10
11   This program is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU Affero General Public License for more details.
15
16   You should have received a copy of the GNU Affero General Public License
17   along with this program.  If not, see <https://www.gnu.org/licenses/>.
18 -->
cfa858 19 <html>
U 20   <head>
b379f5 21     <title>Mediazentrale</title>
cfa858 22     <meta charset="UTF-8">
U 23     <meta name="viewport" content="width=device-width, initial-scale=1.0">
24     <meta name="apple-mobile-web-app-capable" content="yes" />
25     <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
26     <link rel="stylesheet" type="text/css" href="app-menu.css">
27     <link rel="stylesheet" type="text/css" href="hamburger.css">
28     <link rel="stylesheet" type="text/css" href="app.css">
29   </head>
30   <body>
31     <!-- Kopfzeile -->
32     <div class="nord">
33       <div id="nav-menu">
34         <div id="nav-toggle" class="hamburger hamburger--elastic">
35           <div class="hamburger-box">
36             <div class="hamburger-inner"></div>
37           </div>
38         </div>
39       </div>
40       <div class="app-titel">
b379f5 41         <span id="app-titel">Mediazentrale</span>
cfa858 42       </div>
bebd47 43       <div class="top-btn-area">
U 44         <div class="dropdown">
45           <button class="top-btn"><i class="icon-down-dir"></i></button>
46           <div class="dropdown-content">
7c22a2 47             <a id="mi-katalog"><i class="icon-music"></i> Media-Inhalte</a>
U 48             <a id="mi-list"><i class="icon-list"></i> Abspiellisten</a>
49             <a id="mi-orte"><i class="icon-database"></i> Kataloge</a>
50             <a id="mi-player"><i class="icon-play"></i> Abspieler</a>
51             <a id="mi-radio"><i class="icon-ellipsis-vert"></i> Radio</a>
cf6509 52             <a id="mi-prefs"><i class="icon-sliders"></i> Einstellungen</a>
bebd47 53           </div>
U 54         </div>         
55       </div>
cfa858 56     </div>
U 57     <div class="inhalt">
58       <!-- westliche Seitenleiste -->
59       <div class="west">
60         westliche Seitenleiste
61       </div>
62       <div class="zentrum-behaelter">
8239d1 63         <!-- Einblendbereich oben -->
cfa858 64         <div class="dialog"></div>
U 65         <!-- zentraler Inhaltsbereich -->
66         <div class="zentrum">
67           <div class="zentraler-inhalt">
68             <p>
f074f6 69               Hier erscheint der Media-Inhalt.
cfa858 70             </p>
U 71           </div>
72         </div>
8239d1 73         <!-- Einblendbereich unten -->
U 74         <div class="dialog-unten"></div>
cfa858 75       </div>
U 76       <!-- oestliche Seitenleiste -->
77       <div class="ost ost-open">
78         östliche Seitenleiste
79       </div>
80     </div>
81     <!-- Fusszeile -->
82     <div class="sued sued-open">
83       Fußzeile
84     </div>
85     <!-- Skripte -->
a43e1a 86     <script src="js/mustache/mustache.min.js"></script>
cfa858 87     <script src="js/app-menu.js"></script>
U 88     <!-- <script src="js/vorlagen.js"></script> -->
89     <script src="js/app.js"></script>
90     <script>
91         var app;
92         document.addEventListener('DOMContentLoaded', function () {
b379f5 93             app = new Mediazentrale();
cfa858 94             app.init();
U 95         });
96     </script>
97   </body>
98 </html>
99