diff --git a/generate.py b/generate.py index f2dca0f..8aa89a3 100644 --- a/generate.py +++ b/generate.py @@ -48,6 +48,13 @@ l = [ , ["/top", "t", "https://reddit.com/r/all/top?t=1h"] , ["/new", "n", "https://reddit.com/r/FreeGamesOnSteam/new"] , ["/shithole","s", "https://reddit.com/r/freegamesonsteam"] + , ["/common/", "c", [ + ["/seatte", "e","https://reddit.com/r/seattle" ] + , ["/sysadmin", "s","https://reddit.com/r/sysadmin" ] + , ["/programmerhumor", "p","https://reddit.com/r/programmerhumor" ] + , ["/4chan", "4","https://reddit.com/r/4chan" ] + , ["/dccomics", "d","https://reddit.com/r/dccomics" ] + ]] ]] , ["/chan/", "c", [ ["/ck", "k", "https://4chan.org/ck"] @@ -58,6 +65,7 @@ l = [ , ["/g", "g", "https://4chan.org/g"] , ["/silicon", "s", "https://sushigirl.us/silicon/catalog.html"] , ["/endtech", "e", "https://endchan.xyz/tech/catalog.html"] + , ["/λ", "p", "https://lainchan.org/%CE%BB/catalog.html"] ]] , ["/music/", "m", [ ["/mu", "m", "http://aurorachan.net/mu/"] @@ -71,24 +79,31 @@ l = [ ]] , ["/cyb", "c", "https://lainchan.org/cyb/catalog.html"] , ["/lit", "l", "https://lainchan.org/lit/catalog.html"] - , ["/λ", "p", "https://lainchan.org/%CE%BB/catalog.html"] , ["/art", "a", "https://lainchan.org/art/catalog.html"] ]] , ["/vola", "v", "https://volafile.io/r/kUFzLJ"] , ["/tube/", "t", [ - ["/0", "0", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KR4Q-pC-7MLb_DoRmzYOCUw"] - , ["/1", "1", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KRZ43r5UVGNraUgvyPaUMBU"] - , ["/2", "2", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KQO4aHOqypivLefSFKq2vp1"] - , ["/3", "3", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KSeW6AmMmg3D4etDs5YeX8q"] + ["/zero", "0", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KR4Q-pC-7MLb_DoRmzYOCUw"] + , ["/one", "1", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KRZ43r5UVGNraUgvyPaUMBU"] + , ["/two", "2", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KQO4aHOqypivLefSFKq2vp1"] + , ["/three", "3", "https://www.youtube.com/playlist?list=PLIKcw9O7i0KSeW6AmMmg3D4etDs5YeX8q"] ]] #, ["/mail", "g", "https://gmail.com"] # Fixed tab ] +special = "http://google.com" # Todo: put something fun here master = [""" """) master.append("""
""") for f in l: master.append(rhtml(f, "")) -master.append("""
""") +master.append("""
π
""") master = "\n".join(master) print(master) diff --git a/style.css b/style.css index 65ac0a0..8268f40 100644 --- a/style.css +++ b/style.css @@ -22,5 +22,15 @@ a { text-decoration: none; } a:hover { - text-decoration:underline;; + text-decoration:underline; +} +#pi { + font-size: 0.8em; + position: fixed; + bottom: 5px; + right: 5px; + color: #eeeeee; + background-color: rgba(0,0,0,0.5); + padding: 5px; + text-align: right; }