forked from 0x2620/pandora
19 lines
832 B
HTML
19 lines
832 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>{{settings.SITENAME}}</title>
|
|
<link rel="shortcut icon" type="image/png" href="/static/png/icon16.png"/>
|
|
<link rel="icon" href="/static/png/icon64.png" sizes="32x32"/>
|
|
<link rel="icon" href="/static/png/icon64.png" sizes="48x48"/>
|
|
<meta name="application-name" content="{{settings.SITENAME}}"/>
|
|
<meta name="application-url" content="{{base_url}}"/>
|
|
<script>
|
|
if (localStorage && !localStorage.OxTheme)
|
|
localStorage.OxTheme = '{{settings.CONFIG.user.ui.theme}}';
|
|
</script>
|
|
<script type="text/javascript" src="/static/oxjs/build/Ox.js"></script>
|
|
<script type="text/javascript" src="/static/js/pandora.js"></script>
|
|
</head>
|
|
<body></body>
|
|
</html>
|