26 lines
768 B
Cheetah
26 lines
768 B
Cheetah
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
<title>{{ .config.SiteTitle }}</title>
|
||
|
|
||
|
<meta name="author" content="{{ .config.SiteAuthor }}">
|
||
|
<meta name="description" content="{{ .config.SiteDescription }}"/>
|
||
|
|
||
|
<link rel="shortcut icon" href="/favicon.ico">
|
||
|
<link rel="apple-touch-icon" href="/static/favicons/favicon.png">
|
||
|
<link rel="icon" type="image/png" href="/static/favicons/favicon.png"/>
|
||
|
|
||
|
<link rel="stylesheet" href="/static/build/app.css?{{ .config.CSSHash }}">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="photoprism" class="container">
|
||
|
<div class="loading rainbow">
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|