28 lines
762 B
HTML
28 lines
762 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">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
|
|
<link rel="shortcut icon" type="image/png" href="/asset/fav.ico"/>
|
|
|
|
{% seo %}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
<div class="container">
|
|
{% include nav.html %}
|
|
</div>
|
|
</header>
|
|
|
|
<div class="container">
|
|
<section id="main_content">
|
|
{{ content }}
|
|
</section>
|
|
</div>
|
|
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
|
|
</body>
|
|
</html>
|