Initial commit
This commit is contained in:
76
templates/standard/kat_main.html
Normal file
76
templates/standard/kat_main.html
Normal file
@ -0,0 +1,76 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<link rel="stylesheet" href="templates/{$global_template}/css/styles_pc.php" type="text/css">
|
||||
<script type='text/javascript' src='overlib/overlib.js'></script>
|
||||
<title>{$men_titel}</title>
|
||||
{literal}
|
||||
<SCRIPT LANGUAGE='JAVASCRIPT' TYPE='TEXT/JAVASCRIPT'>
|
||||
<!--
|
||||
var win=null;
|
||||
function bib_link_lokal1(mypage,myname,w,h,pos,infocus){
|
||||
if(pos=="random"){myleft=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;mytop=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
|
||||
if(pos=="center"){myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;}
|
||||
else if((pos!='center' && pos!="random") || pos==null){myleft=0;mytop=20}
|
||||
settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=auto,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";
|
||||
win=window.open(mypage,myname,settings);
|
||||
win.focus();
|
||||
}
|
||||
// -->
|
||||
</script>
|
||||
{/literal}
|
||||
<base target="main">
|
||||
<style type="text/css">
|
||||
{literal}
|
||||
h1 { font-weight: bold;
|
||||
color: #000066;
|
||||
font-size: 16px; }
|
||||
.answer {
|
||||
margin:0 auto;
|
||||
margin-left: 35px;
|
||||
margin-right: 35px;
|
||||
}
|
||||
.extrakt {
|
||||
background-color: #d1e0e0;
|
||||
margin:0 auto;
|
||||
margin-left: 35px;
|
||||
margin-right: 35px;
|
||||
}
|
||||
body {
|
||||
padding: 0 2em;
|
||||
background: #e2e2e2;
|
||||
}
|
||||
#page {
|
||||
margin: 2em auto;
|
||||
max-width: 1000px;
|
||||
background: #fff;
|
||||
}
|
||||
body, input, textarea {
|
||||
color: #373737;
|
||||
}
|
||||
{/literal}
|
||||
</style>
|
||||
</head>
|
||||
<body leftmargin="20" rightmargin="20">
|
||||
<div id="page" class="hfeed">
|
||||
<div class="entry-content">
|
||||
<br>
|
||||
{section name=table_data1 loop=$table_data1}
|
||||
<a name="{$table_data1[table_data1].knk}">
|
||||
<h1>{$table_data1[table_data1].ueberschrift}</h1>
|
||||
</a>
|
||||
{if $table_data1[table_data1].art == 'E'}
|
||||
<div class='extrakt'>
|
||||
{else}
|
||||
<div class='answer'>
|
||||
{/if}
|
||||
{$table_data1[table_data1].text}
|
||||
</div>
|
||||
<p>
|
||||
{/section}
|
||||
<br>
|
||||
</div>
|
||||
</div>
|
||||
<!-- #page -->
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user