Initial copy of old site.

This commit is contained in:
2018-08-14 10:56:12 -07:00
parent 94000458e4
commit 7c516cf4d4
112 changed files with 1822 additions and 1791 deletions

View File

@@ -0,0 +1,18 @@
<template name="News&Notices">
<div id="news&NoticesView" class="textView">
<!-- TODO: Load dates from the server and place the html in $("importantDatesContainer") -->
<div id="contentContainer"></div>
</div>
<script>
$(document).ready(function() {
$.ajax({url: "/AdminController.java", cache:false, data: {Request: "GetContent", Name: "news.html"},
success: function(serverReply) {
$('#contentContainer').html(serverReply.result);
},
error: function(request, message, e) {
alert(message);
}
});
});
</script>
</template>