all repos — site @ 3ca6e1a5d5e915e6cf17ee8d60c4ec2a36fccc5b

source for my site, found at icyphox.sh

config.py (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
# config.py - Vite's configuration script

title = 'Anirudh'
author = ''
header = """
        <a href="/">home</a>
        <a href="/blog">blog</a>
        <a href="/reading">reading</a>
        <a href="https://twitter.com/icyphox">twitter</a>
        <a href="/about">about</a>
"""
footer = """<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="https://licensebuttons.net/l/by-nc-sa/4.0/80x15.png"></a>"""
template = 'index.html'  # default is index.html
post_build = ['./rss.py']