6273da517e
Set up basic Jekyll files
15 lines
379 B
HTML
15 lines
379 B
HTML
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>
|
|
{% if page.title == "Home" %}
|
|
{{ site.title }} · {{ site.tagline }}
|
|
{% else %}
|
|
{{ page.title }} · {{ site.title }}
|
|
{% endif %}
|
|
</title>
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="{{ site.baseurl }}/styles.css">
|
|
</head>
|