Files
Piwigo/admin/themes/default/template/header.tpl
plegall c6b45f1772 feature #535, modernize admin header/footer
* [header] replace the color switcher by a light/dark (sun/moon) action link
* [footer] add icons for piwigo.org doc & forum
* [footer] replace Piwigo logo with a clean SVG version, created by @mistic100
* [header/footer] remove "|" separators
* [header] limit title display to 50% of page width (with ellipsis on overflow)
* [header] media query to hide link labels below 800px
* [header] switch color of home icon on hover
* on clear theme, change header/footer background color to #333 (dark grey) like on current Piwigo.org
2016-10-13 11:53:34 +02:00

94 lines
2.3 KiB
Smarty

{*
Warning : This is the admin pages header only
don't confuse with the public page header
*}
<!DOCTYPE html>
<html lang="{$lang_info.code}" dir="{$lang_info.direction}">
<head>
<meta charset="{$CONTENT_ENCODING}">
<title>{$GALLERY_TITLE} :: {$PAGE_TITLE}</title>
<link rel="shortcut icon" type="image/x-icon" href="{$ROOT_URL}{$themeconf.icon_dir}/favicon.ico">
{strip}
{combine_css path="admin/themes/default/fontello/css/fontello.css" order=-10}
{assign "theme_id" ""}
{foreach from=$themes item=theme}
{assign "theme_id" $theme.id}
{if $theme.load_css}
{combine_css path="admin/themes/`$theme.id`/theme.css" order=-10}
{/if}
{if !empty($theme.local_head)}
{include file=$theme.local_head load_css=$theme.load_css}
{/if}
{/foreach}
{combine_script id='jquery' path='themes/default/js/jquery.min.js'}
{/strip}
<!-- BEGIN get_combined -->
{get_combined_css}
{get_combined_scripts load='header'}
<!-- END get_combined -->
{if not empty($head_elements)}
{foreach from=$head_elements item=elt}
{$elt}
{/foreach}
{/if}
</head>
<body id="{$BODY_ID}">
<div id="the_page">
{if not empty($header_msgs)}
<div class="header_msgs">
{foreach from=$header_msgs item=elt}
{$elt}
{/foreach}
</div>
{/if}
<div id="pwgHead">
{strip}
<h1>
<a href="{$U_RETURN}" title="{'Visit Gallery'|translate}" class="tiptip">
<span class="icon-home"></span>
{$GALLERY_TITLE}
</a>
</h1>
{/strip}
<div id="headActions">
<i class="icon-user"></i>{$USERNAME}
<a href="{$U_RETURN}" title="{'Visit Gallery'|translate}"><i class="icon-eye"></i><span>{'Visit Gallery'|translate}</span></a>
{strip}
<a href="{$U_CHANGE_THEME}" class="tiptip" title="{'Switch to clear or dark colors for administration'|translate}">
{if $theme_id eq "clear"}
<i class="icon-moon-inv"></i><span>Dark</span>
{elseif $theme_id eq "roma"}
<i class="icon-sun-inv"></i><span>Light</span>
{/if}
</a>
{/strip}
<a class="tiptip" href="{$U_FAQ}" title="{'Instructions to use Piwigo'|@translate}"><i class="icon-help-circled"></i><span>{'Help Me'|translate}</span></a>
<a href="{$U_LOGOUT}"><i class="icon-logout"></i><span>{'Logout'|translate}</span></a>
</div>
</div>
<div style="clear:both;"></div>
{if not empty($header_notes)}
<div class="header_notes">
{foreach from=$header_notes item=elt}
{$elt}
{/foreach}
</div>
{/if}
<div id="pwgMain">