35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
|
{{ define "base" }}
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>phoneassistant</title>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
|
||
|
<link href="/static/img/favicon.ico" rel="icon" type="image/x-icon">
|
||
|
<link rel="stylesheet" type="text/css" href="/static/css/styles.css">
|
||
|
|
||
|
<meta property="og:type" content="website">
|
||
|
<meta property="og:url" content="https://phoneassistant.simponic.xyz">
|
||
|
<meta property="og:title" content="phoneassistant">
|
||
|
<meta property="og:description" content="phoneassistant">
|
||
|
<meta property="og:image:secure_url" content="https://phoneassistant.simponic.xyz/static/img/favicon.ico">
|
||
|
<meta property="og:image:secure" content="https://phoneassistant.simponic.xyz/static/img/favicon.ico">
|
||
|
|
||
|
<script src="/static/js/util/setThemeBeforeRender.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="content" class="container">
|
||
|
<div>
|
||
|
<h1>phoneassistant</h1>
|
||
|
<a href="/">home.</a>
|
||
|
<span> | </span>
|
||
|
<a href="javascript:void(0);" id="theme-switcher">light mode.</a>
|
||
|
</div>
|
||
|
<hr>
|
||
|
{{ template "content" . }}
|
||
|
</div>
|
||
|
<script data-main="/static/js/script.js" src="/static/js/require.js"></script>
|
||
|
</body>
|
||
|
</html>
|
||
|
{{ end }}
|