12 lines
323 B
HTML
12 lines
323 B
HTML
<head>
|
|
{% include head-meta.html %}
|
|
<title>
|
|
{% if page.title == "Home" %}
|
|
{{ site.title }} · {{ site.tagline }}
|
|
{% else %}
|
|
{{ page.title }} · {{ site.title }}
|
|
{% endif %}
|
|
</title>
|
|
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
|
|
{% include head-meta.html %}
|
|
</head> |