mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-21 09:58:26 +00:00
Add meta info and favicon
This commit is contained in:
BIN
website/site/static/favicon-mc.ico
Normal file
BIN
website/site/static/favicon-mc.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
BIN
website/site/static/img/poster.png
Normal file
BIN
website/site/static/img/poster.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 65 KiB |
@ -1,9 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
{% include "meta.html" %}
|
||||
<title>Docspell – Simple document organizer</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<script type="application/javascript" src="js/bundle.js"></script>
|
||||
|
20
website/site/templates/meta.html
Normal file
20
website/site/templates/meta.html
Normal file
@ -0,0 +1,20 @@
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Eike Kettner">
|
||||
<meta name="description" content="Simple Document Organizer">
|
||||
<meta name="image" property="og:image" content="/img/poster.png">
|
||||
<meta name="title" property="og:title" content="Docspell – Simple Document Organizer">
|
||||
<meta name="og:image" content="/img/poster.png">
|
||||
<meta name="og:title" content="Docspell – Simple Document Organizer">
|
||||
<meta name="og:site_name" content="{% if section is defined %}{{ section.title }} - {% endif %}{%if page is defined %}{{ page.title }} - {% endif %}Docspell">
|
||||
<meta name="og:url" content="">
|
||||
<meta name="og:type" content="website">
|
||||
<meta name="og:description" content="Simple Document Organizer">
|
||||
<meta name="twitter:title" content="Docspell">
|
||||
<meta name="twitter:image" content="/img/poster.png">
|
||||
<meta name="twitter:description" content="Simple Document Organizer">
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
|
||||
<link rel="shortcut icon" href="/favicon-mc.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon-mc.ico" type="image/x-icon">
|
@ -1,11 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Docspell: {{ section.title }}</title>
|
||||
<link rel="stylesheet" href="../styles.css">
|
||||
{% include "meta.html" %}
|
||||
<title>{{ section.title }} – Docspell Documentation</title>
|
||||
<link rel="stylesheet" href="/styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<section class="hero is-info is-small">
|
||||
@ -24,34 +22,34 @@
|
||||
|
||||
<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 %}
|
||||
<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) %}
|
||||
{% set sub = get_section(path=section) %}
|
||||
|
||||
<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="subtitle is-6">
|
||||
{{ sub.description }}
|
||||
</p>
|
||||
<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="subtitle is-6">
|
||||
{{ sub.description }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
@ -1,10 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Docspell: {{ page.title }}</title>
|
||||
{% include "meta.html" %}
|
||||
<title>{{ page.title }} – Docspell Documentation</title>
|
||||
<link rel="stylesheet" href="/styles.css">
|
||||
</head>
|
||||
<body>
|
||||
|
@ -1,10 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Docspell: {{ section.title }}</title>
|
||||
{% include "meta.html" %}
|
||||
<title>{{ section.title }} – Docspell Documentation</title>
|
||||
<link rel="stylesheet" href="/styles.css">
|
||||
</head>
|
||||
<body>
|
||||
|
@ -1,10 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Docspell: {{ section.title }}</title>
|
||||
{% include "meta.html" %}
|
||||
<title>{{ section.title }} – Docspell Documentation</title>
|
||||
<link rel="stylesheet" href="/styles.css">
|
||||
</head>
|
||||
<body>
|
||||
|
Reference in New Issue
Block a user