diff options
-rw-r--r-- | .github/workflows/build.yml | 4 | ||||
-rw-r--r-- | malds/extras.html | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4babd03..70e5e3e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,10 +23,14 @@ jobs: folder="dist/malds/$noext" mkdir -p "$folder" pandoc "$i" -o "$folder"/index.html + cat malds/extras.html >> "$folder"/index.html printf '<li><a href="%s">%s</a></li>\n' "$noext" "$noext">>"dist/malds/index.html" done + cat malds/extras.html >> "dist/malds/index.html" echo "</ul>">>"dist/malds/index.html" + + mkdir -p dist cp -r static/* dist mkdir -p dist/beta diff --git a/malds/extras.html b/malds/extras.html new file mode 100644 index 0000000..69a6e57 --- /dev/null +++ b/malds/extras.html @@ -0,0 +1,12 @@ +<head> +<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/comic-mono@0.0.1/index.css"> +<style> + + html{ + color: #ff2674; + font-family: comic mono; + background-color: #202124; + } + +</style> +</head>
\ No newline at end of file |