mirror of https://github.com/gophish/gophish
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
|
{{define "base"}}
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta name="description" content="">
|
||
|
<meta name="author" content="">
|
||
|
<link rel="shortcut icon" href="../../docs-assets/ico/favicon.png">
|
||
|
|
||
|
<title>Gophish - Dashboard</title>
|
||
|
|
||
|
<!-- Bootstrap core CSS -->
|
||
|
<link href="/css/bootstrap.css" rel="stylesheet">
|
||
|
|
||
|
<!-- Custom styles for this template -->
|
||
|
<link href="/css/main.css" rel="stylesheet">
|
||
|
<link href="/css/font-awesome.min.css" rel="stylesheet">
|
||
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700' rel='stylesheet' type='text/css'>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
{{template "content"}}
|
||
|
<!-- Bootstrap core JavaScript
|
||
|
================================================== -->
|
||
|
<!-- Placed at the end of the document so the pages load faster -->
|
||
|
<script src="/js/jquery.js"></script>
|
||
|
<script src="/js/bootstrap.min.js"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|
||
|
{{end}}
|