Liquid skin made basically usable together with the loops package
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1004 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
2657b5d243
commit
b94c445aab
2 changed files with 45 additions and 22 deletions
|
@ -9,9 +9,9 @@ body {
|
||||||
min-width:640px;
|
min-width:640px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font: 0.8em Tahoma, Helvetica, Arial, sans-serif;
|
font: 0.9em Tahoma, Arial, Helvetica, sans-serif;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
color: #000066;
|
color: #000040;
|
||||||
}
|
}
|
||||||
|
|
||||||
#header,#menu,#content,#sub-section,#footer {
|
#header,#menu,#content,#sub-section,#footer {
|
||||||
|
@ -26,7 +26,21 @@ body {
|
||||||
#sub-section {width:19.9%}
|
#sub-section {width:19.9%}
|
||||||
#footer {clear:left}
|
#footer {clear:left}
|
||||||
|
|
||||||
|
/* more general stuff */
|
||||||
|
|
||||||
|
.box {
|
||||||
|
margin: 12px 15px 8px 10px;
|
||||||
|
border-left: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#footer {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* cyberconcepts specialties */
|
||||||
|
|
||||||
.top {
|
.top {
|
||||||
background-image: url('bg_cyberview.gif');
|
background-image: url('bg_cyberview.gif');
|
||||||
height: 75px;
|
height: 75px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,36 +8,45 @@
|
||||||
cyberconcepts IT-Consulting
|
cyberconcepts IT-Consulting
|
||||||
</title>
|
</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
<link href="liquid.css" rel="stylesheet" type="text/css"
|
<style type="text/css" media="all"
|
||||||
tal:attributes="href context/++resource++liquid.css" />
|
tal:content="string:@import url(${context/++resource++zope3_tablelayout.css});">
|
||||||
<div metal:define-slot="headers" />
|
@import url(zope3_tablelayout.css);
|
||||||
|
</style>
|
||||||
|
<metal:block metal:define-slot="headers" />
|
||||||
|
<metal:block define-slot="style_slot" />
|
||||||
|
<style type="text/css" media="all"
|
||||||
|
tal:content="string:@import url(${context/++resource++liquid.css});">
|
||||||
|
@import url(liquid.css);
|
||||||
|
</style>
|
||||||
|
<metal:block define-slot="ecmascript_slot" />
|
||||||
|
<link rel="icon" type="image/png"
|
||||||
|
tal:attributes="href context/++resource++favicon.png" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div id="header">
|
<div id="header">
|
||||||
<div class="top">
|
<div class="top">
|
||||||
<a href="#" name="top" tal:attributes="href string:${request/URL/1}/@@manage">
|
<a href="#" name="top"
|
||||||
<img src="cyberconcepts.gif" height="75" border="0"
|
tal:attributes="href string:${request/URL/1}"><img
|
||||||
|
src="cyberconcepts.gif" height="75" border="0"
|
||||||
alt="cyberconcepts IT-Consulting"
|
alt="cyberconcepts IT-Consulting"
|
||||||
tal:attributes="src context/++resource++cyberconcepts.gif" />
|
tal:attributes="src context/++resource++cyberconcepts.gif" /></a>
|
||||||
</a>
|
|
||||||
<span metal:use-macro="context/@@standard_macros/logged_user">
|
|
||||||
Logged in as user
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="menu">
|
||||||
<div id="menu"><h1>menu</h1></div>
|
<metal:menu define-slot="navigators"><h1>menu</h1></metal:menu>
|
||||||
|
</div>
|
||||||
<div id="content">
|
<div id="content">
|
||||||
<span metal:define-slot="body">Here comes the body</span>
|
<metal:content define-slot="body">Here comes the body</metal:content>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="sub-section">
|
||||||
<div id="sub-section"><h1>sub-section</h1></div>
|
<metal:sub define-slot="context_information">
|
||||||
|
</metal:sub>
|
||||||
<div id="footer"><h1>footer</h1>
|
</div>
|
||||||
<span metal:use-macro="context/@@standard_macros/footer" />
|
<div id="footer">
|
||||||
|
<metal:footer define-slot="footer">
|
||||||
|
</metal:footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Add table
Reference in a new issue