You've already forked encounter.github.io
mirror of
https://github.com/encounter/encounter.github.io.git
synced 2026-03-30 11:08:50 -07:00
20 lines
784 B
HTML
20 lines
784 B
HTML
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>
|
|
{% if page.title == "About" %}
|
|
{{ site.title }}{% if site.tagline %} · {{ site.tagline }}{% endif %}
|
|
{% else %}
|
|
{{ page.title }} · {{ site.title }}
|
|
{% endif %}
|
|
</title>
|
|
|
|
<link rel="stylesheet" href="{{ 'styles.css' | relative_url }}">
|
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ '/assets/apple-touch-icon-precomposed.png' | relative_url }}">
|
|
<link rel="shortcut icon" href="{{ '/assets/favicon.ico' | relative_url }}">
|
|
<link rel="alternate" type="application/atom+xml" title="{{ site.title }}" href="{{ 'atom.xml' | relative_url }}">
|
|
<meta name="darkreader-lock">
|
|
{% seo title=false %}
|
|
</head>
|