Persoenliche Mediazentrale
ulrich
2021-04-16 3e5a56229e91e42b8080dc7ee5f9461774cf2879
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>
b5c0bc 21     <title>Pan</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">
b5c0bc 40         <span id="app-titel">Pan</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>
52             <a id="mi-listen"><i class="icon-list"></i> Abspiellisten</a>
7c22a2 53             <a id="mi-orte"><i class="icon-database"></i> Kataloge</a>
U 54             <a id="mi-player"><i class="icon-play"></i> Abspieler</a>
3929b0 55             <a id="mi-live"><i class="icon-ellipsis-vert"></i> Livestreams</a>
U 56             <a id="mi-devices"><i class="icon-ellipsis-vert"></i> Ger&auml;te</a>
cf6509 57             <a id="mi-prefs"><i class="icon-sliders"></i> Einstellungen</a>
bebd47 58           </div>
U 59         </div>         
60       </div>
cfa858 61     </div>
U 62     <div class="inhalt">
63       <!-- westliche Seitenleiste -->
64       <div class="west">
65         westliche Seitenleiste
66       </div>
67       <div class="zentrum-behaelter">
8239d1 68         <!-- Einblendbereich oben -->
3929b0 69         <div class="dialog"></div>
50e53e 70         <div class="top-band">
U 71           <div class="breadcrumb-behaelter">Breadcrumb hier</div>
72           <div class="bereich-name">Name des Bereichs</div>
73         </div>
cfa858 74         <!-- zentraler Inhaltsbereich -->
U 75         <div class="zentrum">
76           <div class="zentraler-inhalt">
77             <p>
f074f6 78               Hier erscheint der Media-Inhalt.
cfa858 79             </p>
U 80           </div>
81         </div>
8239d1 82         <!-- Einblendbereich unten -->
U 83         <div class="dialog-unten"></div>
cfa858 84       </div>
U 85       <!-- oestliche Seitenleiste -->
86       <div class="ost ost-open">
87         östliche Seitenleiste
88       </div>
89     </div>
90     <!-- Fusszeile -->
91     <div class="sued sued-open">
92       Fußzeile
93     </div>
94     <!-- Skripte -->
a43e1a 95     <script src="js/mustache/mustache.min.js"></script>
cfa858 96     <script src="js/app-menu.js"></script>
U 97     <!-- <script src="js/vorlagen.js"></script> -->
98     <script src="js/app.js"></script>
99     <script>
100         var app;
101         document.addEventListener('DOMContentLoaded', function () {
b379f5 102             app = new Mediazentrale();
cfa858 103             app.init();
U 104         });
105     </script>
106   </body>
107 </html>
108