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