mirror of
				https://github.com/TheAnachronism/docspell.git
				synced 2025-11-03 18:00:11 +00:00 
			
		
		
		
	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.
		
			
				
	
	
		
			74 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!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>
 |