23c50b6858f94d5abb7af26209056f8f97b8dd7b
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Hanno Böck URLs von http nach https

Hanno Böck authored 7 years ago

12) https://creativecommons.org/publicdomain/zero/1.0/
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
Bernd Wurst Mobile-CSS in das default-t...

Bernd Wurst authored 5 years ago

16) ?><!DOCTYPE html>
17) <html>
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

18) <head>
19) 
Bernd Wurst Mobile-CSS in das default-t...

Bernd Wurst authored 5 years ago

20) <meta name="viewport" content="width=device-width, initial-scale=1.0">
21) 
Hanno Update codingstyle accordin...

Hanno authored 5 years ago

22) <?php
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

23) if ($title) {
24)     echo "<title>$title - Administration</title>";
25) } else {
26)     echo "<title>Administration</title>";
27) }
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

28) ?>
29) <link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" />
30) <?php echo $html_header; ?>
Bernd Wurst Neues Layout der Rechnungen...

Bernd Wurst authored 9 years ago

31) <link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" />
Bernd Wurst Mobile-CSS in das default-t...

Bernd Wurst authored 5 years ago

32) <script type="text/javascript" src="<?php echo $THEME_PATH; ?>script.js"></script>
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

33) </head>
34) 
35) <body>
36) <div><a href="#content" style="display: none;">Zum Inhalt</a></div>
37) 
Bernd Wurst Mobile-CSS in das default-t...

Bernd Wurst authored 5 years ago

38) <a href="javascript:void(0);" class="menuicon" id="showmenu" onclick="showMenu()"><img src="<?php echo $THEME_PATH; ?>images/bars.svg"><span id="showmenutext">Menü</span></a>
39) <a href="<?php echo $BASE_PATH; ?>" class="logo"><img src="<?php echo $THEME_PATH; ?>images/schokokeks.png" width="190" height="141" alt="schokokeks.org Hosting" /></a>
40) <div class="sidebar" id="sidebar">
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

41) 
Bernd Wurst Mobile-CSS in das default-t...

Bernd Wurst authored 5 years ago

42) <div class="menu">
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

43) <?php echo $menu; ?>
Bernd Wurst Mobile-CSS in das default-t...

Bernd Wurst authored 5 years ago

44) </div>
45) <div class="userinfo">
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

46) <?php echo $userinfo; ?>
Bernd Wurst Mobile-CSS in das default-t...

Bernd Wurst authored 5 years ago

47) </div>
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

48) </div>
49) 
50) <div class="content">
51) <a id="content" style="display: none"> </a>
52) 
53) <?php
54) if ($messages) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

55)     echo $messages;
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

56) }
57) ?>
58) 
Hanno Update codingstyle accordin...

Hanno authored 5 years ago

59) <?php
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

60) if ($headline) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

61)     echo "<h3 class=\"headline\">$headline</h3>";
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

62) }
63) ?>
64) 
65) <?php echo $content; ?>
66) 
Bernd Wurst Funktion für Fußnoten einge...

Bernd Wurst authored 6 years ago

67) <?php if ($footnotes) {
68)     echo '<div class="footnotes">';
69)     foreach ($footnotes as $num => $explaination) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

70)         echo '<p>'.str_repeat('*', $num+1).': '.$explaination.'</p>';
Bernd Wurst Funktion für Fußnoten einge...

Bernd Wurst authored 6 years ago

71)     }
72)     echo '</div>';
73) } ?>
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

74) </div>
75) <div class="foot">
Hanno Böck URLs von http nach https

Hanno Böck authored 7 years ago

76) <p>Sollten Sie auf dieser Administrations-Oberfläche ein Problem entdecken oder Hilfe benötigen, schreiben Sie bitte eine einfache eMail an <a href="mailto:root@schokokeks.org">root@schokokeks.org</a>. Unser <a href="https://schokokeks.org/kontakt">Impressum</a> finden Sie auf der <a href="https://schokokeks.org/">öffentlichen Seite</a>. Lizenzinformationen zu diesem Webinterface und verwendeten Rechten finden Sie <a href="<?php echo $BASE_PATH; ?>go/about/about">indem Sie hier klicken</a>.</p>