tld-a-record/website/_layouts/default.html

29 lines
836 B
HTML

<!doctype html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="{{ '/assets/sakura.css' | relative_url }}">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<title>{{site.title}}</title>
</head>
<body>
<div class="wrapper">
<header>
<h1 class="header">{{ site.title | default: site.github.repository_name }}</h1>
<p class="header">{{ site.description | default: site.github.project_tagline }}</p>
<ul>
<li><a class="buttons github" href="{{ site.github.repository_url }}">View On GitHub</a></li>
</ul>
</header>
<section>
{{ content }}
</section>
</div>
</body>
</html>