surtur
6b45213649
All checks were successful
continuous-integration/drone/push Build is passing
* add user onboarding workflow * fix user editing (no edits of passwords of regular users after onboarding) * refresh HIBP breach cache in DB on app start-up * display HIBP breach details * fix request scheduling to prevent panics (this still needs some love..) * fix middleware auth * add TODOs * update head.tmpl * reword some error messages
34 lines
1.7 KiB
Go HTML Template
34 lines
1.7 KiB
Go HTML Template
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{{- if true -}}
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, height=device-height initial-scale=1.0, minimum-scale=1.0">
|
|
{{ else }}
|
|
{{htmlSafe "<!--[if IE 6]>"}}
|
|
<meta http-equiv="Content-Type" content="text/html; charset=Unicode">
|
|
{{htmlSafe "<![endif]-->"}}
|
|
{{ end -}}
|
|
<title>{{if .Title}}{{ .Title }} -{{end}} {{if .AppName}}{{ .AppName }}{{end}}</title>
|
|
{{- if .AppName -}}
|
|
<meta property="og:title" content="{{ .AppName }}">
|
|
<meta property="og:site_name" content="{{ .AppName }}">
|
|
{{- end -}}
|
|
<meta property="og:type" content="website">
|
|
<!-- <meta name="referrer" content="no-referrer, strict-origin-when-cross-origin"> -->
|
|
<meta name="referrer" content="strict-origin-when-cross-origin">
|
|
|
|
<link rel="icon" href="/assets/img/logo-pcmt.svg" type="image/svg+xml">
|
|
<link href="/assets/css/pcmt.css" rel="preload" as="style" integrity="{{- sha384 "css/pcmt.css" -}}">
|
|
<link href="/assets/css/pcmt.css" rel="stylesheet" integrity="{{- sha384 "css/pcmt.css" -}}">
|
|
|
|
{{- if .DevelMode -}}
|
|
<!-- <meta http-equiv="content-security-policy" content="upgrade-insecure-requests; default-src 'self'; connect-src 'self' ws://localhost:3002 http://localhost:3002; script-src 'self' http://localhost:3002; style-src 'self' 'unsafe-inline';"/> -->
|
|
<meta http-equiv="content-security-policy" content="default-src 'self'; connect-src 'self' ws://localhost:3002 http://localhost:3002; script-src 'self' http://localhost:3002;"/>
|
|
<!-- inject browsersync script if running in devel mode -->
|
|
{{ template "browsersync.tmpl" }}
|
|
{{ else }}
|
|
<meta http-equiv="content-security-policy" content="upgrade-insecure-requests; default-src 'self'; connect-src 'self'; script-src 'self';"/>
|
|
{{- end -}}
|
|
</head>
|