docspell/website/site/templates/index.html

22 lines
600 B
HTML
Raw Normal View History

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-29 22:17:18 +00:00
{% include "fathom.html" %}
2020-07-27 20:13:22 +00:00
</html>