44 lines
1.8 KiB
HTML
44 lines
1.8 KiB
HTML
<!doctype html>
|
|
|
|
{% if title %}
|
|
{% set pagetitle = title %}
|
|
{% else %}
|
|
{% set pagetitle = page.fileSlug %}
|
|
{% endif %}
|
|
|
|
<html class="latte dark:mocha">
|
|
<head>
|
|
<title>Portfolio - {{ pagetitle | capitalize }}</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta property="og:title" content="Portfolio - {{ pagetitle | capitalize }}" />
|
|
<meta property="og:description" content="{{ description }}" />
|
|
|
|
<link href="/styles.css" rel="stylesheet">
|
|
<link href="https://unpkg.com/prismjs@1.20.0/themes/prism-okaidia.css" rel="stylesheet">
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/img/site/favicons/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/img/site/favicons/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/img/site/favicons/favicon-16x16.png">
|
|
<link rel="manifest" href="/img/site/favicons/site.webmanifest">
|
|
</head>
|
|
|
|
<body class="bg-crust bg-[length:20rem] bg-[url('/img/site/stars-light.gif')] dark:bg-[url('/img/site/stars-dark.gif')]">
|
|
<header class="
|
|
bg-base/75 bg-contain bg-left bg-no-repeat
|
|
bg-[url('/img/site/falling.gif')]
|
|
border-b-2 border-base justify-end flex h-80 shadow
|
|
">
|
|
<nav class="inline-flex flex-col relative my-auto">
|
|
{%- for navItem in navigation -%}
|
|
<a
|
|
href="{{navItem.url}}"
|
|
class="transition-colors {% if page.url == navItem.url %} border-rosewater text-rosewater {% else %} hover:border-pink active:border-pink text-subtext1 hover:text-subtext0 active:text-subtext0 border-transparent{% endif %} inline-flex items-center pl-1 pr-4 pt-1 border-b-2 text-lg font-medium outline-link"
|
|
{% if page.url == navItem.url %}aria-current="page"{% endif %}
|
|
>
|
|
{{navItem.title}}
|
|
</a>
|
|
{%- endfor -%}
|
|
</nav>
|
|
</header>
|