33 lines
892 B
HTML
33 lines
892 B
HTML
<!DOCTYPE html lang="en">
|
|
<!--
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: MPL-2.0
|
|
-->
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="cache-control" content="no-store" />
|
|
<meta http-equiv="expires" content="0" />
|
|
<meta http-equiv="pragma" content="no-cache" />
|
|
<title>Vault</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
|
|
|
{{content-for "head"}}
|
|
|
|
<link rel="stylesheet" href="{{rootURL}}assets/vendor.css">
|
|
<link rel="stylesheet" href="{{rootURL}}assets/vault.css">
|
|
<link rel="icon" type="image/png" href="{{rootURL}}favicon.png" />
|
|
|
|
{{content-for "head-footer"}}
|
|
</head>
|
|
<body>
|
|
{{content-for "body"}}
|
|
|
|
<script src="{{rootURL}}assets/vendor.js"></script>
|
|
<script src="{{rootURL}}assets/vault.js"></script>
|
|
|
|
{{content-for "body-footer"}}
|
|
</body>
|
|
</html>
|