blob: 0724201ef4700cfe358c44deac7221129573fc99 (
plain) (
tree)
|
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{% if page.title %}{{ page.title }}{% else %}{{ config.title }}{% endif %}</title>
<meta name="description" content="{{ config.description }}">
<link rel="stylesheet" type="text/css" href="/styles.css">
{# <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"> #}
</head>
<body>
{% include "header.html" %}
<div class="page-content">
<div class="wrapper">
{% block content %}
{% endblock content %}
</div>
</div>
{#% include footer.html %#}
</body>
</html>
|