config.py (view raw)
1# config.py - Vite's configuration script
2
3title = 'icyphox'
4author = ''
5header = """
6 <a href="/">home</a>
7 <a href="/blog">blog</a>
8 <a href="/reading">reading</a>
9 <a href="https://twitter.com/icyphox">twitter</a>
10 <a href="/about">about</a>
11"""
12footer = """<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
13 <img class="footimgs" src="/static/cc.svg">
14 </a>
15 <a href="https://webring.xxiivv.com/#random" target="_blank">
16 <img class="footimgs" alt="xxiivv webring" src="/static/webring.svg">
17 </a>
18 """
19template = 'text.html' # default is index.html
20post_build = ['./bin/rss.py']