vault/ui/app/index.html
korhojoa 39b09b3540
Correct doctype (#22153)
* Correct doctype

This is not a valid doctype, the 'lang' belongs to the html element.

* Create 22153.txt

---------

Co-authored-by: Violet Hynes <violet.hynes@hashicorp.com>
2023-08-15 19:00:29 +00:00

33 lines
893 B
HTML

<!DOCTYPE html>
<!--
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: BUSL-1.1
-->
<html lang="en">
<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>