1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {include file="meta/htmlHead.tpl"}
- <body class="">
-
- <!-- HEADER -->
- <header id="header">
- <div id="logo-group">
-
- <!-- PLACE YOUR LOGO HERE -->
- <span id="logo"> <img src="lib/SmartAdmin/img/logo.png" alt="SmartAdmin"> </span>
- <!-- END LOGO PLACEHOLDER -->
-
- <!-- Note: The activity badge color changes when clicked and resets the number to 0
- Suggestion: You may want to set a flag when this happens to tick off all checked messages / notifications -->
- <span id="activity" class="activity-dropdown"> <i class="fa fa-user"></i> </span>
-
- <!-- AJAX-DROPDOWN : control this dropdown height, look and feel from the LESS variable file -->
- <div class="ajax-dropdown">
-
- <!-- the ID links are fetched via AJAX to the ajax container "ajax-notifications" -->
- <div class="btn-group btn-group-justified" data-toggle="buttons">
- <label class="btn btn-default">
- <input type="radio" name="activity" id="#">
- Msgs (0) </label>
- <label class="btn btn-default">
- <input type="radio" name="activity" id="#">
- notify (0) </label>
- <label class="btn btn-default">
- <input type="radio" name="activity" id="#">
- Tasks (0) </label>
- </div>
-
- <!-- notification content -->
- <div class="ajax-notifications custom-scroll">
-
- <div class="alert alert-transparent">
- <h4>Diese Funktion ist nicht verfügbar</h4>
- Sorry, aber die Notification-Funktion ist noch nicht verfügbar.
- </div>
-
- <i class="fa fa-lock fa-4x fa-border"></i>
-
- </div>
- <!-- end notification content -->
-
- <!-- footer: refresh area -->
- <span>Notification Center</span>
- <!-- end footer -->
-
- </div>
- <!-- END AJAX-DROPDOWN -->
- </div>
-
- <!-- pulled right: nav area -->
- <div class="pull-right">
-
- <!-- collapse menu button -->
- <div id="hide-menu" class="btn-header pull-right">
- <span> <a href="javascript:void(0);" data-action="toggleMenu" title="Collapse Menu"><i class="fa fa-reorder"></i></a> </span>
- </div>
- <!-- end collapse menu -->
-
- <!-- logout button -->
- <div id="logout" class="btn-header transparent pull-right">
- <span> <a href="/logout" title="Sign Out" data-action="userLogout" data-logout-msg="Willst Du dich wirklich ausloggen?" id="logout"><i class="fa fa-sign-out"></i></a> </span>
- </div>
- <!-- end logout button -->
- </div>
- <!-- end pulled right: nav area -->
- </header>
- <!-- END HEADER -->
-
- {include file="navigation/sideNavigation.tpl"}
-
- <!-- MAIN PANEL -->
- <div id="main" role="main">
-
- <!-- RIBBON -->
- <div id="ribbon">
-
- <!-- breadcrumb -->
- {include file="navigation/breadcrumb.tpl"}
-
- </div>
- <!-- END RIBBON -->
-
- <!-- MAIN CONTENT -->
- <div id="content">
-
- {include file="misc/contentHeader.tpl"}
|