diff --git a/app/build.gradle b/app/build.gradle index 1eb3178c73..f07bdc2058 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -400,7 +400,7 @@ tasks.register('updateFAQ', Exec) { tasks.register('updatePrivacy', Exec) { workingDir "${rootDir}" - commandLine 'sh', '-c', 'pandoc --standalone --metadata title="FairEmail" --css=privacy.css PRIVACY.md -o privacy.html' + commandLine 'sh', '-c', 'pandoc --standalone --metadata title="FairEmail" -H privacy/header.html --css=privacy.css PRIVACY.md -o privacy/index.html' } tasks.register('updateCrowdin', Exec) { diff --git a/privacy/header.html b/privacy/header.html new file mode 100644 index 0000000000..6c3b31f8b2 --- /dev/null +++ b/privacy/header.html @@ -0,0 +1 @@ + diff --git a/privacy.html b/privacy/index.html similarity index 99% rename from privacy.html rename to privacy/index.html index e2da5a00c0..c8ee0993af 100644 --- a/privacy.html +++ b/privacy/index.html @@ -14,6 +14,7 @@ ul.task-list{list-style: none;} +
diff --git a/privacy.css b/privacy/privacy.css similarity index 100% rename from privacy.css rename to privacy/privacy.css