all repos — site @ 1c13153c60ee5f1f07c002e833f3935878e16848

source for my site, found at icyphox.sh

config.py (view raw)

 1# config.py - Vite's configuration script
 2
 3title = "icyphox"
 4author = ""
 5header = """<a href="/"><- back</a>"""
 6
 7# actually the sidebar
 8footer = """
 9    <img class="logo" src="/static/icyphox.png" alt="icyphox's avatar" />
10    <p>
11    <span class="sidebar-link">email</span>
12    <br>
13      <a href="mailto:x@icyphox.sh">x@icyphox.sh</a>
14    </p> 
15
16    <p>
17    <span class="sidebar-link">github</span>
18        <br>
19      <a href="https://github.com/icyphox">icyphox</a>
20    </p> 
21
22    <p>
23    <span class="sidebar-link">twitter</span>
24    <br>
25      <a href="https://twitter.com/icyphox">icyphox</a>
26    </p> 
27
28
29    <p>
30    <span class="sidebar-link">pgp</span>
31    <br>
32      <a href="/static/gpg.txt">0x8A93F96F78C5D4C4</a>
33    </p> 
34
35    <h3>friends</h3>
36    <p>
37    Some of <a href="/friends">my friends</a> and internet bros.
38    </p>
39
40    <h3>about</h3>
41    <p>
42    More <a href="/about">about me</a> and my work.
43    </p>
44
45    <div class="license">
46    <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
47    <img class="footimgs" src="/static/cc.svg">
48    </a>
49    <a href="https://webring.xxiivv.com/#random" target="_blank">
50    <img class="footimgs" alt="xxiivv webring" src="/static/webring.svg">
51    </a>
52    </div>
53        """
54template = 'text.html'  # default is index.html
55# post_build = ['./bin/rss.py', './bin/plaintext.sh', './bin/update_index.py']