all repos — site @ 7de38f4b6f64bcfb47f642231db72d282e643fd7

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
11    <p>
12    нет риса &mdash; нет жизни
13    </p>
14
15    <p>
16    <span class="sidebar-link">email</span>
17    <br>
18      <a href="mailto:x@icyphox.sh">x@icyphox.sh</a>
19    </p> 
20
21    <p>
22    <span class="sidebar-link">github</span>
23        <br>
24      <a href="https://github.com/icyphox">icyphox</a>
25    </p> 
26
27    <p>
28    <span class="sidebar-link">twitter</span>
29    <br>
30      <a href="https://twitter.com/icyphox">icyphox</a>
31    </p> 
32
33
34    <p>
35    <span class="sidebar-link">pgp</span>
36    <br>
37      <a href="/static/gpg.txt">0x8A93F96F78C5D4C4</a>
38    </p> 
39
40    <h3>friends</h3>
41    <p>
42    Some of <a href="/friends">my friends</a> and internet bros.
43    </p>
44
45    <h3>about</h3>
46    <p>
47    More <a href="/about">about me</a> and my work.
48    </p>
49
50    <div class="license">
51    <a href="https://liberapay.com/icyphox/donate">
52    <img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg">
53    </a>
54    <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
55    <img class="footimgs" src="/static/cc.svg">
56    </a>
57    <a href="https://webring.xxiivv.com/#random" target="_blank">
58    <img class="footimgs" alt="xxiivv webring" src="/static/webring.svg">
59    </a>
60    </div>
61        """
62template = 'text.html'  # default is index.html
63post_build = ['./bin/rss.py', './bin/plaintext.sh', './bin/update_index.py']