base.html 1.37 KB
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>$!{site_name}</title>
<meta name="keywords" content="$!{site_keywords}">
<meta name="description" content="$!{site_description}">
<!-- Favicons -->
<link rel="apple-touch-icon-precomposed" href="${ctx}/static/images/logo/m99.png"/>
<link rel="shortcut icon" href="${ctx}/static/images/logo/m.png"/>
<link href="${ctx}/static/css/bootstrap.min14ed.css" rel="stylesheet"/>
<link href="${ctx}/static/css/font-awesome.min93e3.css" rel="stylesheet"/>
<link href="${ctx}/static/css/animate.min.css" rel="stylesheet"/>
<link href="${ctx}/static/css/plugins/iCheck/custom.css" rel="stylesheet">
<link href="${ctx}/static/css/style.min.css" rel="stylesheet"/>
<link href="${ctx}/static/css/extends.style.css" rel="stylesheet"/>
#block("css")#end
<script type="text/javascript">
var APP = window['APP'] || {};
APP.PATH = "${ctx}";
</script>
</head>
#block("body")#end
<script src="${ctx}/static/js/jquery.min.js"></script>
<script src="${ctx}/static/js/plugins/iCheck/icheck.min.js"></script>
<script src="${ctx}/static/js/bootstrap.min.js"/></script>
<script type="text/javascript">
$(document).ready(function(){$(".i-checks").iCheck({checkboxClass:"icheckbox_square-green",radioClass:"iradio_square-green",})});
</script>
#block("js")#end
</html>