22 lines
751 B
HTML
22 lines
751 B
HTML
<!DOCTYPE html>
|
|
<html class="no-js" lang="en-US">
|
|
|
|
<head>
|
|
{% if page.title %}
|
|
<title>{{ site.title }} - {{ page.title }}</title>
|
|
{% else %}
|
|
<title>{{ site.title }}</title>
|
|
{% endif %}
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
<title>Vac</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="shortcut icon" href="{{ '/assets/img/favicon.png' | relative_url }}" type="image/png" />
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Lexend+Deca&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/style.css" />
|
|
</head>
|
|
<body>
|
|
</html> |