Files
nicco.io/src/template.html
2021-01-27 14:40:43 +01:00

75 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1.0,viewport-fit=cover"
/>
<meta name="theme-color" content="#333333" />
%sapper.base%
<link rel="stylesheet" href="global.css" />
<link rel="icon" type="image/png" href="/images/monogramm.png" />
<!-- Sapper generates a <style> tag containing critical CSS
for the current page. CSS for the rest of the app is
lazily loaded when it precaches secondary pages -->
%sapper.styles%
<!-- This contains the contents of the <svelte:head> component, if
the current page has one -->
%sapper.head%
</head>
<body>
<!-- The application will be rendered inside this element,
because `src/client.js` references it -->
<div id="sapper">%sapper.html%</div>
<!-- Sapper creates a <script> tag containing `src/client.js`
and anything else it needs to hydrate the app and
initialise the router -->
%sapper.scripts%
<!-- <script
async
src="https://stats.nicco.io/unicorns.js"
data-ackee-server="https://stats.nicco.io"
data-ackee-domain-id="f800b5af-b80b-4089-94b2-7b5c96a8f308"
></script> -->
<script src="https://unpkg.com/ionicons@5/dist/ionicons.js"></script>
<script type="text/javascript">
var _paq = (window._paq = window._paq || [])
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['setDocumentTitle', document.domain + '/' + document.title])
_paq.push(['setCookieDomain', '*.nicco.io'])
_paq.push(['disableCookies'])
_paq.push(['trackPageView'])
_paq.push(['enableLinkTracking'])
;(function () {
var u = '//stats.nicco.io/'
_paq.push(['setTrackerUrl', u + 'unicorn.php'])
_paq.push(['setSiteId', '1'])
var d = document,
g = d.createElement('script'),
s = d.getElementsByTagName('script')[0]
g.type = 'text/javascript'
g.async = true
g.src = u + 'unicorn.js'
s.parentNode.insertBefore(g, s)
})()
</script>
<noscript
><p>
<img
src="//stats.nicco.io/unicorn.php?idsite=1&amp;rec=1"
style="border: 0"
alt=""
/></p
></noscript>
</body>
</html>