22 lines
921 B
Plaintext
22 lines
921 B
Plaintext
package core
|
|
|
|
import "vctp/version"
|
|
|
|
templ Header() {
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<meta name="description" content="vCTP dashboard and API endpoint"/>
|
|
<meta name="color-scheme" content="light"/>
|
|
<meta name="theme-color" content="#195fc8"/>
|
|
<title>vCTP API</title>
|
|
<link rel="icon" href={ "/favicon.ico?v=" + version.Value }/>
|
|
<link rel="icon" type="image/png" sizes="16x16" href={ "/favicon-16x16.png?v=" + version.Value }/>
|
|
<link rel="icon" type="image/png" sizes="32x32" href={ "/favicon-32x32.png?v=" + version.Value }/>
|
|
<script src="/assets/js/htmx@v2.0.2.min.js"></script>
|
|
<script src={ "/assets/js/web3-charts.js?v=" + version.Value }></script>
|
|
<link href={ "/assets/css/output@" + version.Value + ".css" } rel="stylesheet"/>
|
|
<link href={ "/assets/css/web3.css?v=" + version.Value } rel="stylesheet"/>
|
|
</head>
|
|
}
|