From baed99b5a100b4ad4ee9083d396d5c254e49a715 Mon Sep 17 00:00:00 2001 From: Jan Friedli Date: Mon, 13 Apr 2020 22:48:47 +0200 Subject: added info page --- templates/download.html | 2 +- templates/index.html | 8 ++++++- templates/info.html | 61 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 69 insertions(+), 2 deletions(-) create mode 100644 templates/info.html (limited to 'templates') diff --git a/templates/download.html b/templates/download.html index 83dd9c4..7ece063 100644 --- a/templates/download.html +++ b/templates/download.html @@ -40,7 +40,7 @@ {% endfor %} {% endif %} -

+

{% if meta %}

diff --git a/templates/index.html b/templates/index.html index b361394..ed583d2 100644 --- a/templates/index.html +++ b/templates/index.html @@ -10,10 +10,16 @@
- +
+ + + ? + + + {% endblock %} diff --git a/templates/info.html b/templates/info.html new file mode 100644 index 0000000..889a08f --- /dev/null +++ b/templates/info.html @@ -0,0 +1,61 @@ +{% extends "base.html" %} +{% block content %} +
+

+ What are metadata? +

+

+ Metadata consists of information that characterizes your file. They answer background questions about who, how, when, and what. This gives your file multi-faceted documentation. + + https://0xacab.org/jvoisin/mat2/blob/master/README.md (09.2019) + +

+ +

+ The metadata of your file leak a lot of information about you. For example, cameras store file information about the time of a shot and which camera was used for it. Documents, such as PDF or Words, automatically add author or company information to the document. You don't want to publish all this information at all? +

+ +

+ This is precisely the job of MAT2: getting rid, as much as possible, of metadata. +

+ +

+ MAT2 locally +

+

+ Please note that while we do not keep a copy of your file, there is no way that you could be certain about this: Act accordingly. Due to this warning, please consider running MAT2 locally on your device. +

+ +

+ MAT2 is available in pip +

+

+

pip3 install mat2
+

+

+ MAT2 on Debian +

+

+ MAT2 is available on Debian. +

+

+

sudo apt install mat2
+

+

+ More info: https://packages.debian.org/sid/mat2 +

+ +

+ Supported file formats +

+

+ {% for extension in extensions %} + + {{ extension }} + + {% endfor %} +

+ +
+ +{% endblock %} -- cgit v1.3