docspell/website/site/templates/overview.html
eikek 4ffc8d1f14 Add support for more generic notification
This is a start to have different kinds of notifications. It is
possible to be notified via e-mail, matrix or gotify. It also extends
the current "periodic query" for due items by allowing notification
over different channels. A "generic periodic query" variant is added
as well.
2021-12-11 18:57:32 +01:00

74 lines
2.6 KiB
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>{{ section.title }} Docspell Documentation</title>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<section class="hero is-info is-small">
<div class="hero-head">
{% include "navbar.html" %}
</div>
<div class="hero-body">
<div class="columns is-vcentered">
<div class="column is-8">
<h1 class="title">
Docspell Documentation
</h1>
<h2 class="subtitle">
{{ section.title }}
</h2>
</div>
<div class="column">
<div id="search"></div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="content is-size-5">
This is the documentation for Docspell, version {{ config.extra.version }}.
</div>
<div class="columns is-multiline">
{% for section in section.subsections %}
{% set sub = get_section(path=section) %}
{% if not sub.extra.hidden %}
<div class="column is-one-third-widescreen is-half-tablet">
<div class="card full-height">
<a href="{{sub.permalink | safe}}">
<div class="card-content">
<div class="media">
<div class="media-content">
<p class="title is-5">
{{ sub.title | title }}
</p>
<p class="has-text">
{{ sub.description }}
</p>
</div>
</div>
</div>
</a>
</div>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</section>
{% include "footer.html" %}
{% include "search-head.html" %}
{% include "search-part.html" %}
{% include "fathom.html" %}
</body>
</html>