1
0
mirror of https://github.com/osmarks/website synced 2025-09-02 02:37:55 +00:00

New blog post and redesigned iconography

This commit is contained in:
2024-03-28 00:48:30 +00:00
parent cc4fa56faa
commit 0ad753e377
96 changed files with 289 additions and 124 deletions

View File

@@ -6,11 +6,11 @@ mixin image(src)
img(src=src)
else
picture
each val, key in src
if key == "_fallback"
img(src=val)
each pair in src
if pair[0] == "_fallback"
img(src=pair[1])
else
source(srcset=val, type=key)
source(srcset=pair[1], type=pair[0])
doctype html
html(lang="en")