mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
7400f8e3d1
ENHANCEMENT Better styling for non-javascript message in CMS loading screen git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@92701 467b73ca-7a2a-4603-9d3b-597d59a354a9
56 lines
2.8 KiB
Scheme
56 lines
2.8 KiB
Scheme
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="Content-language" content="$i18nLocale" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
|
|
<% base_tag %>
|
|
<title>$ApplicationName | $SectionTitle</title>
|
|
</head>
|
|
|
|
<body class="stillLoading $CSSClasses">
|
|
<div class="ss-loading-screen" style="background: #FFF url($LoadingImage) 50% 50% no-repeat; position: absolute;z-index: 100000;height: 100%;width: 100%;margin: 0;padding: 0;z-index: 100000;position: absolute;"><% _t('LOADING','Loading...',PR_HIGH) %><noscript><p class="message notice"><% _t('REQUIREJS','The CMS requires that you have JavaScript enabled.',PR_HIGH) %></p></noscript></div>
|
|
|
|
<div class="ui-layout-north ss-cms-top-menu">
|
|
$CMSTopMenu
|
|
</div>
|
|
|
|
<div class="ui-layout-west">
|
|
$Left
|
|
</div>
|
|
|
|
<div class="ui-layout-center right" id="right">
|
|
$Right
|
|
</div>
|
|
|
|
<div class="ui-layout-east" id="contentPanel">
|
|
<% control EditorToolbar %>
|
|
$ImageForm
|
|
$LinkForm
|
|
$FlashForm
|
|
<% end_control %>
|
|
</div>
|
|
|
|
<div class="ui-layout-south ss-cms-bottom-bar">
|
|
<div class="holder">
|
|
<div id="logInStatus">
|
|
<a href="$ApplicationLink" title="<% _t('SSWEB','Silverstripe Website') %>">$ApplicationName</a> -
|
|
<abbr style="border-style: none" title="<% _t('APPVERSIONTEXT1',"This is the") %> $ApplicationName <% _t('APPVERSIONTEXT2',"version that you are currently running, technically it's the CVS branch") %>">$CMSVersion</abbr>
|
|
<% control CurrentMember %>
|
|
<% _t('LOGGEDINAS','Logged in as') %> <strong><% if FirstName && Surname %>$FirstName $Surname<% else_if FirstName %>$FirstName<% else %>$Email<% end_if %></strong> | <a href="{$BaseHref}admin/myprofile" id="EditMemberProfile"><% _t('EDITPROFILE','Profile') %></a> | <a href="Security/logout" id="LogoutLink"><% _t('LOGOUT','Log out') %></a>
|
|
<% end_control %>
|
|
</div>
|
|
|
|
<div id="switchView" class="bottomTabs">
|
|
<% if ShowSwitchView %>
|
|
<div class="blank"> <% _t('VIEWPAGEIN','Page view:') %> </div>
|
|
<span class="current" title="<% _t('EDITINCMS', 'Edit this page in the CMS') %>"><% _t('EDIT','Edit') %></span>
|
|
<a id="viewStageSite" title="<% _t('VIEWINDRAFT', 'View the Page in the Draft Site') %>" href="home/?stage=Stage" class="{params:'stage=Stage'}"><% _t('DRAFTS','Draft Site') %></a>
|
|
<a id="viewLiveSite" title="<% _t('VIEWINPUBLISHED', 'View the Page in the Published Site') %>" href="home/?stage=Live" class="{params:'stage=Live'}"><% _t('PUBLIS','Published Site') %></a>
|
|
<a style="display: none; margin-left: 20px;" id="viewArchivedSite" href="home/"><% _t('ARCHS','Archived Site') %></a>
|
|
<% end_if %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |