15 lines
522 B
HTML
15 lines
522 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>{{ page.title }}</title>
|
|
|
|
{% if page.robots %}
|
|
<meta name="robots" content="{{page.robots}}" />
|
|
{% endif %}
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ "/assets/main.css" | relative_url }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ "/assets/main-dark.css" | relative_url }}">
|
|
|
|
</head>
|