You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
940 B
30 lines
940 B
<div class="container"> |
|
<hr> |
|
|
|
<footer> |
|
<p>© Jury Ondersteunings Stam 2016</p> |
|
</footer> |
|
|
|
</div> |
|
|
|
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> |
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> |
|
<!-- Include all compiled plugins (below), or include individual files as needed --> |
|
<script src="<?php echo base_url('bootstrap/js/bootstrap.min.js'); ?>"></script> |
|
|
|
<?php if ($page == 'uitslag') { ?> |
|
<link href="https://cdn.datatables.net/1.10.11/css/jquery.dataTables.min.css" rel="stylesheet"> |
|
<script type="text/javascript" src="//cdn.datatables.net/1.10.11/js/jquery.dataTables.min.js"></script> |
|
<script type="text/javascript" charset="utf-8"> |
|
$(document).ready(function() { |
|
$('#maintable').dataTable( { |
|
"paging": false, |
|
"order": [[ 0, "asc" ]], |
|
"info": false |
|
} ); |
|
} ); |
|
</script> |
|
<?php } ?> |
|
|
|
</body> |
|
</html>
|
|
|