From cbffdef6b4f04fc3a2af0ab6c04d345de4fc79b8 Mon Sep 17 00:00:00 2001 From: Vladan Popovic Date: Thu, 22 Aug 2019 16:59:23 +0200 Subject: [PATCH] Add templates and update gitignore --- .gitignore | 2 -- source/_templates/atom.html | 5 +++++ source/_templates/footer.html | 13 +++++++++++++ source/_templates/layout.html | 4 ++++ 4 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 source/_templates/atom.html create mode 100644 source/_templates/footer.html create mode 100644 source/_templates/layout.html diff --git a/.gitignore b/.gitignore index 6ddeec9..14a1bfc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,2 @@ -*.pdf -*.html .tox build diff --git a/source/_templates/atom.html b/source/_templates/atom.html new file mode 100644 index 0000000..a5eeec6 --- /dev/null +++ b/source/_templates/atom.html @@ -0,0 +1,5 @@ +
+ + + +
diff --git a/source/_templates/footer.html b/source/_templates/footer.html new file mode 100644 index 0000000..ce0ecfb --- /dev/null +++ b/source/_templates/footer.html @@ -0,0 +1,13 @@ +{# footer.html #} + diff --git a/source/_templates/layout.html b/source/_templates/layout.html new file mode 100644 index 0000000..381220c --- /dev/null +++ b/source/_templates/layout.html @@ -0,0 +1,4 @@ +{# layout.html #} +{% extends "!layout.html" %} + +{% set css_files = css_files + ['_static/pygments.css'] %}