2020-07-27 20:13:22 +00:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
2020-07-30 23:14:09 +00:00
|
|
|
|
{% include "meta.html" %}
|
2020-07-27 20:13:22 +00:00
|
|
|
|
<title>Docspell – Simple document organizer</title>
|
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
|
<script type="application/javascript" src="js/bundle.js"></script>
|
|
|
|
|
</head>
|
|
|
|
|
<body id="app">
|
|
|
|
|
</body>
|
|
|
|
|
<script type="application/javascript">
|
|
|
|
|
var elmFlags = {
|
|
|
|
|
"version": "{{ config.extra.version }}"
|
|
|
|
|
};
|
|
|
|
|
var elmApp = Elm.Main.init({
|
|
|
|
|
node: document.getElementById("app"),
|
|
|
|
|
flags: elmFlags
|
|
|
|
|
});
|
|
|
|
|
</script>
|
2020-09-07 21:28:02 +00:00
|
|
|
|
<!-- Fathom - simple website analytics - https://github.com/usefathom/fathom -->
|
|
|
|
|
<script>
|
|
|
|
|
(function(f, a, t, h, o, m){
|
|
|
|
|
a[h]=a[h]||function(){
|
|
|
|
|
(a[h].q=a[h].q||[]).push(arguments)
|
|
|
|
|
};
|
|
|
|
|
o=f.createElement('script'),
|
|
|
|
|
m=f.getElementsByTagName('script')[0];
|
|
|
|
|
o.async=1; o.src=t; o.id='fathom-script';
|
|
|
|
|
m.parentNode.insertBefore(o,m)
|
|
|
|
|
})(document, window, '//webstats.daheim.site/tracker.js', 'fathom');
|
|
|
|
|
fathom('set', 'siteId', 'OGJDF');
|
|
|
|
|
fathom('trackPageview');
|
|
|
|
|
</script>
|
|
|
|
|
<!-- / Fathom -->
|
2020-07-27 20:13:22 +00:00
|
|
|
|
</html>
|