antville/code/Skins/$Skins.skin
Tobi Schäfer 1b8bf37675 * Added Layout.getTitle() method to compatibility layer always returning “Layout” to prevent display of remaining title properties in older databases
* Slightly increased sizes of some input elements for convenience
 * Added SQL patch updating constraints of the membership role column (MySQL)
 * Removed obsolete title and description properties from Layout
 * Minor layout enhancements and wording edits
2010-04-25 20:11:16 +00:00

119 lines
3.2 KiB
XML

<% #page %>
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<title><% response.title %></title>
<meta http-equiv="Content-Type" content="text/html" />
<meta name="MSSmartTagsPreventParsing" content="TRUE" />
<script type="text/javascript" src="<% site.href main.js %>"></script>
<link rel="stylesheet" type="text/css" title="CSS Stylesheet" href="<% site.href main.css %>" />
<style type="text/css">
body {
width: auto;
margin: 10px;
padding: 0;
border: none;
}
.formWide {
width: 100%;
height: 500px;
}
/* classes for skin diff */
.diff td {
padding:0px 5px;
}
.diff pre {
font-size:12px;
margin:0px;
padding:2px 0px;
}
.diff .removed {
border-top: 1px solid black;
background-color: #ff3333;
}
.diff .added {
border-top: 1px solid black;
background-color: #33dd33;
}
.diff .line {
border-top: 1px solid black;
}
.diff .num {
border-top: 1px solid black;
text-align:right;
}
.diff .status {
padding: 0px 5px;
border-top: 1px solid black;
}
</style>
</head>
<body>
<% response.body %>
</body>
</html>
<% #header %>
<div class="pagelink"><% breadcrumbs %></div><br />
<p class="storyTitle"><% response.title %></p>
<div class="ample">
<% skins.link create <% gettext "Add Skin" %> prefix="... " %>
</div>
<div>...
<% skins.link main <% gettext Basic %> %>
<% skins.link modified <% gettext Modified %> prefix=" | " %>
<% skins.link all <% gettext All %> prefix=" | " %>
</div>
<% #main %>
<% skins.skin $Skins#header %>
<br />
<div class="ample">
<% skins.link Site/page/edit <% gettext "Site Page" %> %>
<div class="small"><% gettext "This skin defines the basic structure of your
site. Modifying it will affect the general appearance of your site." %></div>
</div>
<div class="ample">
<% skins.link Site/navigation/edit <% gettext Navigation %> %>
<div class="small"><% gettext "This skin is used to display the navigation
links on the page." %></div>
</div>
<div class="ample">
<% skins.link Site/main/edit <% gettext Frontpage %> %>
<div class="small"><% gettext "This skin is used to render the front page of
your site." %></div>
</div>
<div class="ample">
<% skins.link Site/stylesheet/edit <% gettext "CSS Stylesheet" %> %>
<div class="small"><% gettext "This skin contains the Cascading Stylesheet
(CSS) definitions, e.g. fonts, font sizes, colors etc. Modifying this skin
will affect the general appearance of your site." %></div>
</div>
<div class="ample">
<% skins.link Site/javascript/edit <% gettext JavaScript %> %>
<div class="small"><% gettext "This skin contains additional JavaScript code
that will be included in every page." %></div>
</div>
<% #all %>
<script type="text/javascript">
$(function() {
$("ul ul").hide();
$("ul li a[href=#]").toggle(function() {
$(this).css("color", "<% value 'base font color' %>");
$(this).next("ul").show();
return false;
}, function() {
$(this).css("color", "<% value 'link color' %>");
$(this).next("ul").hide();
return false;
});
});
</script>
<% skins.skin $Skins#header %>
<ul class="skinmgrTree">
<% response.list %>
</ul>