all repos — site @ e71c264e2e9430c288a703ea8fe240f6305ea763

source for my site, found at icyphox.sh

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="/reading">reading</a>
10        <a href="/friends">friends</a>
11        <a href="/about">about</a>
12    </div>
13"""
14footer = """<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
15        <img class="footimgs" src="/static/cc.svg">
16        </a>
17        <a href="https://webring.xxiivv.com/#random" target="_blank">
18        <img class="footimgs" alt="xxiivv webring" src="/static/webring.svg">
19        </a>
20        """
21template = 'text.html'  # default is index.html
22post_build = ['./bin/rss.py', './bin/plaintext.sh', './bin/update_index.py']