docspell/website/site/templates/index.html
Eike Kettner 9f1d8cee8f Add search to docs
Closes: #295
2020-09-30 00:21:21 +02:00

22 lines
600 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
{% include "meta.html" %}
<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>
{% include "fathom.html" %}
</html>