You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
2 years ago
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||
|
<title>{{ page.title }}</title>
|
||
|
{%- seo title=false -%}
|
||
|
|
||
|
{% if page.robots %}
|
||
|
<meta name="robots" content="{{page.robots}}" />
|
||
|
{% endif %}
|
||
|
|
||
|
{%- if site.listen_for_clients_preferred_style -%}
|
||
|
<link rel="stylesheet" type="text/css" href="{{ "/assets/main.css" | relative_url }}">
|
||
|
{%- else -%}
|
||
|
{%- if site.style == 'light' -%}
|
||
|
<link rel="stylesheet" type="text/css" href="{{ "/assets/main-light.css" | relative_url }}">
|
||
|
{%- elsif site.style == 'hacker' -%}
|
||
|
<link rel="stylesheet" type="text/css" href="{{ "/assets/main-hacker.css" | relative_url }}">
|
||
|
{%- else -%}
|
||
|
<link rel="stylesheet" type="text/css" href="{{ "/assets/main-dark.css" | relative_url }}">
|
||
|
{%- endif -%}
|
||
|
{%- endif -%}
|
||
|
{%- if page.list == 'bullet' -%}
|
||
|
<link rel="stylesheet" type="text/css" href="{{ "/assets/css/list.css" }}">
|
||
|
{%- endif -%}
|
||
|
|
||
|
{%- if jekyll.environment == 'production' and site.google_analytics -%}
|
||
|
{%- include google-analytics.html -%}
|
||
|
{%- endif -%}
|
||
|
</head>
|