24 lines
549 B
HTML
24 lines
549 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ page.lang | default: site.lang | default: 'en' }}">
|
|
{%- include head.html -%}
|
|
|
|
<body>
|
|
<div id="wrapper">
|
|
<div id="header">
|
|
<a href="/">
|
|
<img alt="mint.lgbt leaf" class="logo" height="40" width="40" src="{{ '/assets/logo.png' | relative_url }}">
|
|
<h1>{{ site.title }}</h1>
|
|
</a>
|
|
</div>
|
|
|
|
{%- include menu.html -%}
|
|
|
|
<main id="content" aria-label="Content">
|
|
{{ content }}
|
|
</main>
|
|
</div>
|
|
|
|
{%- include footer.html -%}
|
|
</body>
|
|
</html>
|