1d85224dbc
Fixed a topic desync and eliminates a number of possible race conditions in the caches. Optimised global.js by swapping out some of the unnecessary jQuery with native javascript code. Updated jQuery to version 3.1.11 Fixed the CSS on the areyousure and error templates.
16 lines
637 B
HTML
16 lines
637 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{{.Title}}</title>
|
|
<link href="/static/main.css" rel="stylesheet" type="text/css">
|
|
<script type="text/javascript" src="/static/jquery-3.1.1.min.js"></script>
|
|
<script type="text/javascript">var session = "{{.CurrentUser.Session}}";
|
|
</script>
|
|
<script type="text/javascript" src="/static/global.js"></script>
|
|
<meta name="viewport" content="width=device-width,initial-scale = 1.0, maximum-scale=1.0,user-scalable=no" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
{{template "menu.html" .}}
|
|
<div id="back"><div id="main">
|
|
{{range .NoticeList}}<div class="alert">{{.}}</div>{{end}} |