Add bootstrap styling and webpack resource handling
This commit is contained in:
parent
3f43a07f9f
commit
49c91cddb0
22 changed files with 9807 additions and 2 deletions
|
@ -2,7 +2,8 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>{{ .Title }}</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<!-- generics -->
|
||||
<link rel="icon" href="/images/favicon-32.png" sizes="32x32">
|
||||
<link rel="icon" href="/images/favicon-57.png" sizes="57x57">
|
||||
|
@ -19,10 +20,15 @@
|
|||
<link rel="apple-touch-icon" href="/images/favicon-120.png" sizes="120x120">
|
||||
<link rel="apple-touch-icon" href="/images/favicon-152.png" sizes="152x152">
|
||||
<link rel="apple-touch-icon" href="/images/favicon-180.png" sizes="180x180">
|
||||
|
||||
<link rel="stylesheet" href="/css/cacert.bundle.css">
|
||||
<title>{{ .Title }}</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>{{ .Title }}</h1>
|
||||
<img src="/images/CAcert-logo.svg" width="510" height="116" alt="CAcert">
|
||||
{{ template "content" . }}
|
||||
<script type="text/javascript" src="/js/cacert.bundle.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
{{ end }}
|
Reference in a new issue