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