Datenstand V1.0
This commit is contained in:
5
template/frame_1col.htm
Normal file
5
template/frame_1col.htm
Normal file
@@ -0,0 +1,5 @@
|
||||
<div id="frame_middle">
|
||||
<?php
|
||||
include PATH_TPL . 'frame_' . $middle_type . '.htm';
|
||||
?>
|
||||
</div>
|
||||
9
template/frame_2col_left.htm
Normal file
9
template/frame_2col_left.htm
Normal file
@@ -0,0 +1,9 @@
|
||||
<div id="frame_left">
|
||||
<div id="frame_left_top">%frame_left_top%</div>
|
||||
<div id="frame_left_bottom">%frame_left_bottom%</div>
|
||||
</div>
|
||||
<div id="frame_middle">
|
||||
<?php
|
||||
include PATH_TPL . 'frame_' . $middle_type . '.htm';
|
||||
?>
|
||||
</div>
|
||||
1
template/frame_2col_right.htm
Normal file
1
template/frame_2col_right.htm
Normal file
@@ -0,0 +1 @@
|
||||
<div id="frame_middle">
|
||||
13
template/frame_3col.htm
Normal file
13
template/frame_3col.htm
Normal file
@@ -0,0 +1,13 @@
|
||||
<div id="frame_left">
|
||||
<div id="frame_left_top">%frame_left_top%</div>
|
||||
<div id="frame_left_bottom">%frame_left_bottom%</div>
|
||||
</div>
|
||||
<div id="frame_middle">
|
||||
<?php
|
||||
include PATH_TPL . 'frame_' . $middle_type . '.htm';
|
||||
?>
|
||||
</div>
|
||||
<div id="frame_right">
|
||||
<div id="frame_right_top">%frame_right_top%</div>
|
||||
<div id="frame_right_bottom">%frame_right_bottom%</div>
|
||||
</div>
|
||||
1
template/frame_middle_1col.htm
Normal file
1
template/frame_middle_1col.htm
Normal file
@@ -0,0 +1 @@
|
||||
<div id="frame_middle_left">%middle_left%</div>
|
||||
1
template/frame_middle_2col.htm
Normal file
1
template/frame_middle_2col.htm
Normal file
@@ -0,0 +1 @@
|
||||
<div id="frame_middle_left">%middle_left%</div>
|
||||
27
template/page.css
Normal file
27
template/page.css
Normal file
@@ -0,0 +1,27 @@
|
||||
html {font-family:Verdana;font-size:10px;background:#EEEEEE;}
|
||||
body {width:980px;margin:20px auto;background:#FFFFFF;}
|
||||
br.clear {clear:both;}
|
||||
input.button_search {border:none;cursor:pointer;}
|
||||
#top {width:100%;height:20px;margin:0px;}
|
||||
#top_left {float:left;}
|
||||
#top_right {float:right;}
|
||||
#top_right ul {margin:0px;padding:0px;list-style-type:none;}
|
||||
#top_right li {float:left;margin:0px;width:100px;text-align:right;display:block;}
|
||||
#top_right a {color:black;display:inline-block;width:100%;}
|
||||
#top_right li.active {font-weight:bold;}
|
||||
#top_right li:hover {font-weight:bold;}
|
||||
#header {position:relative;width:100%;height:100px;border:1px solid black;display:block;overflow:hidden;}
|
||||
#header img {position:absolute;top:0px;left:0px;z-index:0;opacity:0.5;moz-opacity:50;filter(alpha:50);}
|
||||
#header_top_left {position:absolute;top:0px;left:0px;z-index:1;background:#FFFFFF;}
|
||||
#header_top_right {position:absolute;top:0px;right:0px;float:right;z-index:1;}
|
||||
#header_bottom_left {position:absolute;bottom:0px;left:0px;z-index:1;}
|
||||
#header_bottom_right {position:absolute;bottom:0px;right:0px;z-index:1;}
|
||||
#navi_top {height:30px;line-height:30px;border:1px solid black;width:100%;}
|
||||
#navi_top_left {height:30px;line-height:30px;float:left;}
|
||||
#navi_top_right {height:30px;line-height:30px;float:right;}
|
||||
#banner_top {width:100%;margin-top:10px;text-align:center;}
|
||||
#frame {width:100%;min-height:300px;margin:10px 0px;border:1px solid blue;}
|
||||
#banner_bottom {width:100%;text-align:center;}
|
||||
#footer {width:100%;height:30px;margin:10px 0px;line-height:30px;background:#CCCCCC;text-align:center;}
|
||||
#footer_rist {width:100%;height:30px;line-height:15px;text-align:center;margin:10px 0px;font-variant:small-caps;}
|
||||
#footer_rist a {color:#CC0033;text-decoration:none;font-family:Verdana;font-size:12px;}
|
||||
41
template/template_v1.htm
Normal file
41
template/template_v1.htm
Normal file
@@ -0,0 +1,41 @@
|
||||
<?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">
|
||||
<head>
|
||||
<title>%title%</title>
|
||||
<link rel="stylesheet" media="all" type="text/css" href="template/page.css" />
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta name="description" content="%description%">
|
||||
<meta name="author" content="%author%">
|
||||
<meta name="keywords" content="%keywords%">
|
||||
<meta name="date" content="%date%">
|
||||
</head>
|
||||
<body>
|
||||
<div id="top" style="text-align:center;">
|
||||
<div id="top_left" onclick="change_style(this);" style="cursor:pointer">top_left</div>
|
||||
<span class="middle" onclick="change_style(this.parentNode);" style="cursor:pointer;">top</span>
|
||||
<div id="top_right" onclick="change_style(this);">top_right</div>
|
||||
</div>
|
||||
<br class="clear" />
|
||||
<div id="header">
|
||||
<div id="header_top_left">header_top_left</div>
|
||||
<div id="header_top_right">header_top_right</div>
|
||||
<br class="clear" />
|
||||
<span class="middle" onclick="change_style(this.parentNode);" style="cursor:pointer;">header</span>
|
||||
<div id="header_bottom_left">header_bottom_left</div>
|
||||
<div id="header_bottom_right">header_bottom_right</div>
|
||||
</div>
|
||||
<div id="navi_top">
|
||||
<div id="navi_top_left">navi_top_left</div>
|
||||
<div id="navi_top_right">navi_top_right</div>
|
||||
</div>
|
||||
<div id="banner_top">banner_top</div>
|
||||
<div id="frame" style="text-align:center;">
|
||||
<span class="middle" onclick="change_style(this.parentNode);" style="cursor:pointer;">frame</span>
|
||||
</div>
|
||||
<div id="banner_bottom">banner_bottom</div>
|
||||
<div id="footer">footer</div>
|
||||
<div id="footer_rist">Powered by <a href="http://www.ri-st.de" target="_blank">R!ST-CMS</a><br />© Pablo Rink und Christian Steinle GbR || Template generated by <a href="http://www.ri-st.de" target="_blank">R!ST</a></div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user