36 lines
717 B
HTML
36 lines
717 B
HTML
<%inherit file="main.html" />
|
|
|
|
<!-- TODO: http://docs.jquery.com/Plugins/Validation -->
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
${init}
|
|
// Show and hide sidebar
|
|
var acc_hidden=false;
|
|
$('#hide_acc').click(function() {
|
|
if(acc_hidden) {
|
|
$('#accordion').show();
|
|
$('#acc_td').attr("width","320");
|
|
$('#hide_acc').html("<<br><<br><");
|
|
acc_hidden=false;
|
|
} else {
|
|
$('#accordion').hide();
|
|
$('#acc_td').attr("width","0");
|
|
$('#hide_acc').html("><br>><br>>");
|
|
acc_hidden=true;
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<%include file="navigation.html" />
|
|
|
|
<section>
|
|
<div id="accordion">
|
|
${accordion}
|
|
</div>
|
|
|
|
<section class="main-content">
|
|
${content}
|
|
</section>
|
|
</section>
|