init
This commit is contained in:
Executable
+13
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>{{.title}}</title>
|
||||
{{template "common/head.html" .}}
|
||||
</head>
|
||||
|
||||
<body class="blue_color_theme">
|
||||
{{template "common/header.html" .}} {{.LayoutContent}} {{template "common/footer.html" .}} {{template "common/foot.html" .}}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>{{.title}}</title>
|
||||
{{template "common/head.html" .}}
|
||||
</head>
|
||||
|
||||
<body class="blue_color_theme">
|
||||
{{template "common/header_index.html" .}} {{.LayoutContent}} {{template "common/footer.html" .}} {{template "common/foot.html" .}}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,36 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="no-js">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{.title}}</title>
|
||||
<link rel="stylesheet" type="text/css" href="/static/css/normalize.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/static/css/demo.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/static/css/component.css" />
|
||||
<!--[if IE]>
|
||||
<script src="/static/js/html5.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container demo-1">
|
||||
<div class="content">
|
||||
<div id="large-header" class="large-header">
|
||||
<canvas id="demo-canvas"></canvas> {{.LayoutContent}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /container -->
|
||||
<!--==== jquery ====-->
|
||||
<script src="/static/js/jquery-2.1.4.min.js"></script>
|
||||
<script src="/static/js/jquery.form.js"></script>
|
||||
<script src="/static/js/TweenLite.min.js"></script>
|
||||
<script src="/static/js/EasePack.min.js"></script>
|
||||
<script src="/static/js/rAF.js"></script>
|
||||
<script src="/static/js/demo-1.js"></script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>{{.title}}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<!--==== bootstrap ====-->
|
||||
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
|
||||
<!--==== font-awesome ====-->
|
||||
<link href="/static/css/font-awesome.min.css" rel="stylesheet">
|
||||
<link href="/static/css/common.css" rel="stylesheet">
|
||||
<!--==== animate css ====-->
|
||||
<link href="/static/css/animate.min.css" rel="stylesheet">
|
||||
<link href="/static/plugins/jquery-fancybox/css/jquery.fancybox.css" rel="stylesheet">
|
||||
<link href="/static/plugins/sweetalert/css/sweetalert.css" rel="stylesheet"/>
|
||||
|
||||
<!--==== jquery ====-->
|
||||
<script src="/static/js/jquery-2.1.4.min.js"></script>
|
||||
<!--==== bootstrap ====-->
|
||||
<script src="/static/js/bootstrap.min.js"></script>
|
||||
<script src="/static/js/jquery.form.js"></script>
|
||||
<script src="/static/plugins/jquery-fancybox/jquery.fancybox.js"></script>
|
||||
<script src="/static/plugins/jquery-notify/notify.js"></script>
|
||||
<script src="/static/plugins/sweetalert/sweetalert.min.js"></script>
|
||||
<script src="/static/js/common/common.js"></script>
|
||||
<script src="/static/js/common/form.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{{.LayoutContent}}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,14 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>{{.title}}</title>
|
||||
{{template "common/head.html" .}}
|
||||
<link href="/static/css/navbar-fixed-side.css" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
<body class="blue_color_theme">
|
||||
{{template "common/header.html" .}} {{.LayoutContent}} {{template "common/foot.html" .}}
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user