Final Update From Caleb

Incorporated all Caleb's changes
This commit is contained in:
2018-08-23 16:58:50 -07:00
parent 2593d0f977
commit 14bd554d35
206 changed files with 2661 additions and 84 deletions

View File

@@ -1,18 +1,5 @@
<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>
<template name="NewsNotices">
<div id="newsNotices" class="textView">
{{{newsHTML}}}
</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>