Initial copy of old site.
This commit is contained in:
18
imports/ui/News&Notices.html
Normal file
18
imports/ui/News&Notices.html
Normal 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>
|
||||
Reference in New Issue
Block a user