Persoenliche Mediazentrale
ulrich
2021-04-27 9603599a1d0f161d1365fe8d0d60ce1d3133e197
commit | author | age
cfa858 1 <!DOCTYPE html>
b379f5 2 <!--
960359 3   Tango - Personal Media Center
b379f5 4   Copyright (C) 2021  Ulrich Hilger
U 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>
7d3118 21     <title>Tango</title>
cfa858 22     <meta charset="UTF-8">
f64984 23     <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
cfa858 24     <meta name="apple-mobile-web-app-capable" content="yes" />
U 25     <link rel="stylesheet" type="text/css" href="app-menu.css">
26     <link rel="stylesheet" type="text/css" href="hamburger.css">
27     <link rel="stylesheet" type="text/css" href="app.css">
28   </head>
29   <body>
30     <!-- Kopfzeile -->
31     <div class="nord">
32       <div id="nav-menu">
33         <div id="nav-toggle" class="hamburger hamburger--elastic">
34           <div class="hamburger-box">
35             <div class="hamburger-inner"></div>
36           </div>
37         </div>
38       </div>
39       <div class="app-titel">
7d3118 40         <span id="app-titel">Tango</span>
cfa858 41       </div>
bebd47 42       <div class="top-btn-area">
8d7d35 43         <div class="top-btns">          
U 44           <button type="button"  title="Neu" class="top-btn" id="top-neu-btn"><i class="icon-doc"></i></button>
45           <button type="button"  title="herauf" class="top-btn" id="top-up-btn"><i class="icon-up-open"></i></button>
46         </div>
bebd47 47         <div class="dropdown">
U 48           <button class="top-btn"><i class="icon-down-dir"></i></button>
49           <div class="dropdown-content">
8d7d35 50             <a id="mi-katalog"><i class="icon-video"></i> Media-Inhalte</a>
U 51             <a id="mi-list"><i class="icon-music"></i> Abspielliste</a>
a27c68 52             <a id="mi-switch"><i class="icon-flash"></i> Ein/Aus</a>
8d7d35 53             <a id="mi-listen"><i class="icon-list"></i> Abspiellisten</a>
7c22a2 54             <a id="mi-orte"><i class="icon-database"></i> Kataloge</a>
U 55             <a id="mi-player"><i class="icon-play"></i> Abspieler</a>
a27c68 56             <a id="mi-live"><i class="icon-podcast"></i> Livestreams</a>
U 57             <a id="mi-devices"><i class="icon-cog"></i> Ger&auml;te</a>
cf6509 58             <a id="mi-prefs"><i class="icon-sliders"></i> Einstellungen</a>
bebd47 59           </div>
U 60         </div>         
61       </div>
cfa858 62     </div>
U 63     <div class="inhalt">
64       <!-- westliche Seitenleiste -->
65       <div class="west">
66         westliche Seitenleiste
67       </div>
68       <div class="zentrum-behaelter">
8239d1 69         <!-- Einblendbereich oben -->
3929b0 70         <div class="dialog"></div>
50e53e 71         <div class="top-band">
U 72           <div class="breadcrumb-behaelter">Breadcrumb hier</div>
73           <div class="bereich-name">Name des Bereichs</div>
74         </div>
cfa858 75         <!-- zentraler Inhaltsbereich -->
U 76         <div class="zentrum">
77           <div class="zentraler-inhalt">
78             <p>
f074f6 79               Hier erscheint der Media-Inhalt.
cfa858 80             </p>
U 81           </div>
82         </div>
8239d1 83         <!-- Einblendbereich unten -->
U 84         <div class="dialog-unten"></div>
cfa858 85       </div>
U 86       <!-- oestliche Seitenleiste -->
87       <div class="ost ost-open">
88         östliche Seitenleiste
89       </div>
90     </div>
91     <!-- Fusszeile -->
92     <div class="sued sued-open">
93       Fußzeile
94     </div>
95     <!-- Skripte -->
a43e1a 96     <script src="js/mustache/mustache.min.js"></script>
cfa858 97     <script src="js/app-menu.js"></script>
U 98     <!-- <script src="js/vorlagen.js"></script> -->
99     <script src="js/app.js"></script>
100     <script>
101         var app;
102         document.addEventListener('DOMContentLoaded', function () {
b379f5 103             app = new Mediazentrale();
cfa858 104             app.init();
U 105         });
106     </script>
107   </body>
108 </html>
109