Add templates and update gitignore
This commit is contained in:
parent
347a3079a2
commit
cbffdef6b4
4 changed files with 22 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,4 +1,2 @@
|
|||
*.pdf
|
||||
*.html
|
||||
.tox
|
||||
build
|
||||
|
|
5
source/_templates/atom.html
Normal file
5
source/_templates/atom.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<br />
|
||||
<a class='atom' href="{{ blog_baseurl }}/blog/atom.xml">
|
||||
<img src="/_static/rss-icon.svg" />
|
||||
</a>
|
||||
<br />
|
13
source/_templates/footer.html
Normal file
13
source/_templates/footer.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
{# footer.html #}
|
||||
<footer class="t-foot">
|
||||
{% trans path=pathto('copyright'), copyright=copyright|e %}
|
||||
<a href="https://creativecommons.org/publicdomain/mark/1.0/">
|
||||
<span class="cc0">©</span>
|
||||
</a>
|
||||
<a href="{{ path }}">{{ copyright }}</a> .
|
||||
{% endtrans %}
|
||||
<br>
|
||||
A customized
|
||||
<a href="https://typlog.com/">typlog</a>
|
||||
<a href="https://github.com/typlog/sphinx-typlog-theme">sphinx theme</a>.
|
||||
</footer>
|
4
source/_templates/layout.html
Normal file
4
source/_templates/layout.html
Normal file
|
@ -0,0 +1,4 @@
|
|||
{# layout.html #}
|
||||
{% extends "!layout.html" %}
|
||||
|
||||
{% set css_files = css_files + ['_static/pygments.css'] %}
|
Loading…
Add table
Reference in a new issue