Files
Froxlor/templates/Sparkle/index.tpl
Robert Förster (Dessa) 73acfb5d7c update js folder
- add images from jquery-ui to css folder, the stylesheet expects them being around even though we don't use them, adding them and not using them is better then editing the stylesheet and then forgetting about it again after every jquery-ui update, i suppose..
- fix html5shiv name, it was minified to begin with
- bump flot to 0.8.3, fix plugin name (no functional changes for us)
- bump tablesorter to 2.16.4 (likewise)
2014-05-20 19:50:57 +02:00

64 lines
2.1 KiB
Smarty

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="Default-Style" content="text/css" />
{if $no_robots == 0}
<meta name="robots" content="noindex, nofollow, noarchive" />
<meta name="GOOGLEBOT" content="nosnippet" />
{/if}
{if $use_webfonts == 1}
<link href="//fonts.googleapis.com/css?family={$webfont}" rel="stylesheet">
{/if}
<link href="templates/{$theme}/assets/img/favicon.ico" rel="icon" type="image/x-icon" />
<link href="templates/{$theme}/assets/img/touchicon.png" rel="shortcut" />
<link href="templates/{$theme}/assets/img/touchicon.png" rel="apple-touch-icon" />
<link rel="stylesheet" href="templates/{$theme}/assets/css/main.css" />
<!--[if IE]><link rel="stylesheet" href="templates/{$theme}/assets/css/main_ie.css" /><![endif]-->
<!--[if lt IE 9]><script src="js/html5shiv.min.js"></script><![endif]-->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="templates/{$theme}/assets/js/main.js"></script>
<title>{$title}Froxlor Server Management Panel</title>
{if $use_webfonts == 1}
<style type="text/css">
body { font-family: {$webfont}, 'Lucida Grande', 'Lucida Sans Unicode', Helvetica, Arial, Verdana, sans-serif; }
</style>
{/if}
</head>
<body>
{if $loggedin == 1}
<header class="topheader">
<hgroup>
<h1>Froxlor Server Management Panel</h1>
</hgroup>
<img src="{$header_logo}" alt="Froxlor Server Management Panel" class="small" />
</header>
<div class="content">
<nav><div class="menuelement bradiusodd">
<h4>Froxlor WebFTP</h4>
</div>{$navigation}</nav>
{/if}
{if $loggedin}
<div class="main">
{else}
<div class="loginpage">
{/if}
{$body}
</div>
{if $loggedin}
<div class="clear"></div>
</div>
{/if}
<footer>
<span><img src="templates/{$theme}/assets/img/logo_grey.png" alt="Froxlor" />
{if ($show_version_login == '1' && $loggedin == 0) || ($show_version_footer == '1' && $loggedin == 1)}
{$version}{$branding}
{/if}
&copy; 2009-{$current_year} by <a href="http://www.froxlor.org/" rel="external">{t}the Froxlor Team{/t}</a>
</span>
</footer>
</body>
</html>