mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
29 lines
943 B
HTML
29 lines
943 B
HTML
<head>
|
|
<meta charset="UTF-8">
|
|
<link href="http://gmpg.org/xfn/11" rel="profile">
|
|
|
|
<!-- Enable responsiveness on mobile devices-->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>
|
|
{% if page.title == "Home" %}
|
|
{{ site.full_title }} · {{ site.title }}
|
|
{% else %}
|
|
{{ page.title }} · {{ site.title }}
|
|
{% endif %}
|
|
</title>
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="{{ site.baseurl }}/styles.css">
|
|
|
|
<!-- Icons -->
|
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}/public/apple-touch-icon-precomposed.png">
|
|
<link rel="shortcut icon" href="{{ site.baseurl }}/public/favicon.ico">
|
|
|
|
<!-- RSS -->
|
|
<link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ site.baseurl }}/atom.xml">
|
|
|
|
<!-- JS -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/2.0.0/anchor.min.js"></script>
|
|
</head>
|