mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
6783b82fd5
Issue: #1120
25 lines
659 B
HTML
25 lines
659 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
{% include "meta.html" %}
|
||
<title>Docspell – Simple document organizer</title>
|
||
<link rel="stylesheet" href="styles.css">
|
||
<script type="text/javascript" src="{{ get_url(path="/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 "fathom.html" %}
|
||
</body>
|
||
</html>
|