mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
25 lines
650 B
HTML
25 lines
650 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
{% include "parts/meta.html" %}
|
||
<title>Docspell – Simple document organizer</title>
|
||
<link rel="stylesheet" href="/styles.css">
|
||
<script type="text/javascript" src="/js/bundle.js"></script>
|
||
</head>
|
||
<body id="app">
|
||
|
||
|
||
<script type="application/javascript">
|
||
var elmFlags = {
|
||
"version": "{{ config.extra.version }}"
|
||
};
|
||
var elmApp = Elm.Main.init({
|
||
node: document.getElementById("app"),
|
||
flags: elmFlags
|
||
});
|
||
</script>
|
||
|
||
{% include "parts/fathom.html" %}
|
||
</body>
|
||
</html>
|