all repos — site @ cf6af88aa4e83938eef1b74eaed615b5975a0462

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