2024-05-13 07:02:38 +00:00
Type: Template
Title: cv
<!DOCTYPE html>
< html lang = "en" >
< head >
< title > {weblog-title}{separator}{post-title}< / title >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2024-09-05 05:42:07 +00:00
< link href = "https://unpkg.com/prismjs@1.29.0/themes/prism-tomorrow.min.css" rel = "stylesheet" / >
2024-05-13 07:02:38 +00:00
< link rel = "stylesheet" href = "/styles.css?v0.0.3" >
{feeds}
< / head >
< body >
< div class = "header" >
< header >
< img class = "avatar" src = "https://cdn.some.pics/deathau/663da4619fdb6.svg" alt = "My avatar — A pixelated self-portrait in the style of the 'bitizens' in the mobile game Tiny Tower" / >
< h1 class = "weblog-title" > < a href = "{base-path}" > {weblog-title}< / a > < / h1 >
{navigation}
< fedi-social > < / fedi-social >
< / header >
< / div >
< main class = "cv" >
2024-05-13 07:03:09 +00:00
< h1 > {title}< / h1 >
< p class = "summary" > {summary}< / p >
< aside class = "post-info" >
< a href = "{link}" target = "_blank" > {link}< / a >
< / aside >
< img class = "featured" src = "{image}" / >
2024-05-13 07:02:38 +00:00
{body}
2024-05-13 07:03:09 +00:00
< h2 > Skills< / h2 >
< aside class = "post-tags" >
{tags}
< / aside >
2024-05-13 07:02:38 +00:00
< / main >
< footer >
< p > Made with < a href = "https://weblog.lol" > weblog.lol< / a > .< / p >
2024-05-14 01:13:36 +00:00
< p > < img class = "prami-logo" src = "https://cdn.cache.lol/img/prami_hybrid.svg" > < a href = "https://home.omg.lol/referred-by/deathau" > Powered by omg.lol< / a > < / p >
2024-05-13 07:02:38 +00:00
< / footer >
< script src = "/js/luxon.min.js" crossorigin = "anonymous" > < / script >
< script src = "/js/fediverse.js" > < / script >
< script >
document.querySelectorAll('time:not(.dt-start):not(.dt-end)').forEach(time => {
const datetime = luxon.DateTime.fromISO(time.getAttribute('datetime'))
time.innerText = datetime.toRelative()
})
fediverse()
< / script >
2024-09-05 05:42:07 +00:00
< script src = "https://unpkg.com/prismjs@1.29.0/components/prism-core.min.js" > < / script >
< script src = "https://unpkg.com/prismjs@1.29.0/plugins/autoloader/prism-autoloader.min.js" > < / script >
2024-05-13 07:02:38 +00:00
< / body >
< / html >