first commit
This commit is contained in:
149
templates/modern/praxisstelle/hauptframe.html
Executable file
149
templates/modern/praxisstelle/hauptframe.html
Executable file
@ -0,0 +1,149 @@
|
||||
{if $action == ''}
|
||||
<html>
|
||||
<head>
|
||||
<title>DVM Praxisstellenverwaltung</title>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
<script type='text/javascript' src='../ckeditor5/build/ckeditor.js'></script>
|
||||
<!-- Add jQuery library -->
|
||||
<script type="text/javascript" src="../fancybox-2.1.7/lib/jquery-1.10.2.min.js"></script>
|
||||
<!-- Add mousewheel plugin (this is optional) -->
|
||||
<script type="text/javascript" src="../fancybox-2.1.7/lib/jquery.mousewheel.pack.js?v=3.1.3"></script>
|
||||
<!-- Add fancyBox main JS and CSS files -->
|
||||
<script type="text/javascript" src="../fancybox-2.1.7/source/jquery.fancybox.pack.js?v=2.1.5"></script>
|
||||
<link rel="stylesheet" type="text/css" href="../fancybox-2.1.7/source/jquery.fancybox.css?v=2.1.5" media="screen" />
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$('.box').fancybox({
|
||||
'width' : '100%',
|
||||
'height' : '100%',
|
||||
'autoScale' : true,
|
||||
'transitionIn' : 'elastic',
|
||||
'transitionOut' : 'elastic',
|
||||
'type' : 'iframe',
|
||||
helpers: {
|
||||
overlay : {
|
||||
closeClick: true
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<style>
|
||||
.ButtonAnzeigen {
|
||||
box-shadow: 0px 10px 14px -7px #3e7327;
|
||||
background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
|
||||
background-color:#77b55a;
|
||||
border-radius:4px;
|
||||
border:1px solid #4b8f29;
|
||||
display:inline-block;
|
||||
cursor:pointer;
|
||||
color:#ffffff;
|
||||
font-family:Arial;
|
||||
font-size:13px;
|
||||
font-weight:bold;
|
||||
padding:0px 20px;
|
||||
text-decoration:none;
|
||||
text-shadow:0px 1px 0px #5b8a3c;
|
||||
}
|
||||
.ButtonAnzeigen:hover {
|
||||
background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
|
||||
background-color:#72b352;
|
||||
}
|
||||
.ButtonAnzeigen:active {
|
||||
position:relative;
|
||||
top:1px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
|
||||
|
||||
<div class="header">
|
||||
<div>
|
||||
<div>Willkommen</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="pat_list_box">
|
||||
<p>
|
||||
<table border="0" bordercolordark="white" bordercolorlight="lightgray" cellspacing="0" width="100%" height="80%">
|
||||
<tr>
|
||||
<td align="center">
|
||||
<b>Willkommen bei der DVM Praxisstellenverwaltung</b>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
Wählen Sie oben einen Reiter aus, um den gewünschten Bereich zu verwalten.
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center">
|
||||
<fieldset style="width:800px">
|
||||
<legend>
|
||||
<b>Aktuelle Nachrichten</b>
|
||||
</legend>
|
||||
<table cellspacing="0" cellpadding="2" width="100%" border="1" width="80%">
|
||||
<tr>
|
||||
<td>
|
||||
<b>Datum - Zeit</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Überschrift</b>
|
||||
</td>
|
||||
<td>
|
||||
<b>Anzeige</b>
|
||||
</td>
|
||||
<tr>
|
||||
{section name=table_data1 loop=$table_data1}
|
||||
{if $smarty.section.table_data1.rownum != ''}
|
||||
<tr>
|
||||
<td>
|
||||
{$table_data1[table_data1].pn_date_form}
|
||||
</td>
|
||||
<td>
|
||||
{$table_data1[table_data1].pn_headline}
|
||||
</td>
|
||||
<td>
|
||||
<a class="ButtonAnzeigen box" title="{$table_data1[table_data1].pn_headline}" href="?action=show&pn_id={$table_data1[table_data1].pn_id}">Nachricht anzeigen</a>
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{/section}
|
||||
</table>
|
||||
</fieldset>
|
||||
</tr>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<br>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
||||
|
||||
{if $action == 'show'}
|
||||
<html>
|
||||
<head>
|
||||
<link type="text/css" rel="stylesheet" href="../templates/{$global_template}/css/styles_refill.css">
|
||||
</head>
|
||||
<body>
|
||||
<fieldset>
|
||||
<legend>
|
||||
<b>{$prx_show_headline}</b>
|
||||
</legend>
|
||||
{$prx_show_text}
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
</form>
|
||||
</fieldset>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
Reference in New Issue
Block a user