Persoenliche Mediazentrale
ulrich
2021-04-07 b90d6705d78a7ad60a1e0419eb27ab20927d3fdd
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         <!-- <button type="button"  title="Speichern" class="top-btn" id="top-speichern-btn"><i class="icon-floppy"></i></button> -->
45         <!-- <button type="button"  title="Schlie&szlig;en" class="top-btn" id="top-close-btn"><i class="icon-cancel"></i></button> -->
46         <div class="dropdown">
47           <button class="top-btn"><i class="icon-down-dir"></i></button>
48           <div class="dropdown-content">
49             <!--
50             <a id="mi-ansehen"><i class="icon-eye"></i> Ansehen</a>
51             <a id="mi-duplizieren"><i class="icon-docs"></i> Duplizieren</a>
52             <a id="mi-umbenennen"><i class="icon-pencil"></i> Umbenennen</a>
53             <a id="mi-neuer-ordner"><i class="icon-folder-empty"></i> Neuer Ordner</a>
54             <a id="mi-neuer-text"><i class="icon-doc"></i> Neuer Text</a>
55             <a id="mi-neues-dok"><i class="icon-doc-text"></i> Neues Dokument</a>
56             <a id="mi-abmelden"><i class="icon-logout"></i> Abmelden</a>
57             -->
b90d67 58             <a id="mi-katalog"><i class="icon-music"></i> Media</a>
U 59             <a id="mi-orte"><i class="icon-database"></i> Orte</a>
60             <a id="mi-list"><i class="icon-list"></i> Playlist</a>
bebd47 61           </div>
U 62         </div>         
63         
64       </div>
cfa858 65     </div>
U 66     <div class="inhalt">
67       <!-- westliche Seitenleiste -->
68       <div class="west">
69         westliche Seitenleiste
70       </div>
71       <div class="zentrum-behaelter">
8239d1 72         <!-- Einblendbereich oben -->
cfa858 73         <div class="dialog"></div>
U 74         <!-- zentraler Inhaltsbereich -->
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