16 lines
385 B
HTML
16 lines
385 B
HTML
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
|
||
|
<title>
|
||
|
{% if page.title %}
|
||
|
{{ page.title }}
|
||
|
{% else %}
|
||
|
{{ site.title }}
|
||
|
{% endif %}
|
||
|
</title>
|
||
|
|
||
|
<link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}" />
|
||
|
{% include toggle_theme_js.html %}
|
||
|
</head>
|
||
|
|