Index
joshstock.in
/
29e63dd
Source for serving and static templating/compiling of https://joshstock.in.
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
158
14 Jan 2023 23:37
5aaa26a
Website rewrite
Josh Stockin
1
9
0
G
Blob @
joshstock.in
/
site
/
generators
/
head
/
styles.py
application/x-python
159 bytes
download raw
1
import
htmlgenerator
as
hg
2
3
4
def
run
(
data
=
None
):
5
contents
= [
6
hg
.
LINK
(
rel
=
"stylesheet"
,
href
=
"/static/style/core.css"
),
7
]
8
9
return
contents
10