23 lines
604 B
HTML
23 lines
604 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Wroten - {{title}}</title>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body class="bg-gray-100">
|
|
<header>
|
|
<nav>
|
|
<ul>
|
|
{%- for content in collections.all -%}
|
|
<li>
|
|
<a href="{{content.url}}"{% if page.url == content.url %} aria-current="page"{% endif %}>
|
|
{{ content.data.title }}
|
|
</a>
|
|
</li>
|
|
{%- endfor -%}
|
|
</ul>
|
|
</nav>
|
|
</header>
|