All checks were successful
continuous-integration/drone/push Build is passing
19 lines
647 B
Plaintext
19 lines
647 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 API endpoint"/>
|
|
<title>vCTP API</title>
|
|
<link rel="icon" href="/favicon.ico"/>
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/>
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/>
|
|
<script src="/assets/js/htmx@v2.0.2.min.js"></script>
|
|
<link href={ "/assets/css/output@" + version.Value + ".css" } rel="stylesheet"/>
|
|
<link href="/assets/css/web3.css" rel="stylesheet"/>
|
|
</head>
|
|
}
|