summaryrefslogtreecommitdiff
path: root/templates/base.html
blob: 4cd6b4ce804224eccb3059222c7aafa5e8a09267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{{ 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 }}