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" %}
|
|
|
|
|
<title>{{ section.title }} – Docspell Documentation</title>
|
|
|
|
|
<link rel="stylesheet" href="/styles.css">
|
2020-07-27 20:13:22 +00:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<section class="hero is-info is-small">
|
|
|
|
|
<div class="hero-head">
|
|
|
|
|
{% include "navbar.html" %}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="hero-body">
|
2020-09-29 22:17:18 +00:00
|
|
|
|
<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>
|
2020-07-27 20:13:22 +00:00
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<section class="section">
|
2020-07-30 20:27:10 +00:00
|
|
|
|
<div class="container">
|
2020-07-30 23:14:09 +00:00
|
|
|
|
<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 %}
|
2020-07-27 20:13:22 +00:00
|
|
|
|
|
2020-07-30 23:14:09 +00:00
|
|
|
|
{% set sub = get_section(path=section) %}
|
2021-11-21 23:22:51 +00:00
|
|
|
|
{% if not sub.extra.hidden %}
|
2020-07-27 20:13:22 +00:00
|
|
|
|
|
2020-07-30 23:14:09 +00:00
|
|
|
|
<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>
|
2020-07-31 13:13:07 +00:00
|
|
|
|
<p class="has-text">
|
2020-07-30 23:14:09 +00:00
|
|
|
|
{{ sub.description }}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
2020-07-27 20:13:22 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-07-30 23:14:09 +00:00
|
|
|
|
</a>
|
|
|
|
|
</div>
|
2020-07-27 20:13:22 +00:00
|
|
|
|
</div>
|
2021-11-21 23:22:51 +00:00
|
|
|
|
{% endif %}
|
|
|
|
|
|
2020-07-30 23:14:09 +00:00
|
|
|
|
{% endfor %}
|
2020-07-27 20:13:22 +00:00
|
|
|
|
</div>
|
2020-07-30 20:27:10 +00:00
|
|
|
|
</div>
|
2020-07-27 20:13:22 +00:00
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% include "footer.html" %}
|
2021-10-25 15:21:55 +00:00
|
|
|
|
{% include "search-head.html" %}
|
2021-03-01 08:36:59 +00:00
|
|
|
|
{% include "search-part.html" %}
|
|
|
|
|
{% include "fathom.html" %}
|
2020-07-27 20:13:22 +00:00
|
|
|
|
</body>
|
2020-09-29 22:17:18 +00:00
|
|
|
|
|
2020-07-27 20:13:22 +00:00
|
|
|
|
</html>
|