forked from 0c34/govwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.header.html
31 lines (26 loc) · 1022 Bytes
/
template.header.html
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
{{define "template.header"}}
<!DOCTYPE html>
<html>
<head>
<title>{{.title}}</title>
<link href="{{.weburl}}public/css/font-awesome-4.7.0/css/font-awesome.css" rel="stylesheet">
<!-- <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" /> -->
<link rel="stylesheet" type="text/css" href="{{.weburl}}public/css/open-sans.css" />
<link href="{{.weburl}}public/css/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<script type="text/javascript" src="{{.weburl}}public/js/jquery-3.2.1-min.js"></script>
<script type="text/javascript" src="{{.weburl}}public/js/bootstrap.min.js"></script>
<link href="{{.weburl}}public/css/main.css" rel="stylesheet">
<style>
.header {
background-image: url("{{.weburl}}public/img/header2.png");
width: 1140px;
height: 130px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<nav class="header" role="navigation">
</nav>
{{end}}