46 lines
1.9 KiB
HTML
46 lines
1.9 KiB
HTML
<head>
|
|
|
|
<meta name="HandheldFriendly" content="True">
|
|
<meta name="MobileOptimized" content="320">
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!--Stylesheets-->
|
|
<link rel="stylesheet" href="{{ "/assets/css/bootstrap/bootstrap.min.css" | relative_url }}">
|
|
<link rel="stylesheet" href="{{ "/assets/css/bootstrap/bootstrap-toc.min.css" | relative_url }}"/>
|
|
|
|
{% if page.layout == "layouts/home" %}
|
|
<link rel="stylesheet" href="{{ "/assets/css/home.css" | relative_url }}"/>
|
|
{% elsif page.layout == "layouts/page" %}
|
|
<link rel="stylesheet" href="{{ "/assets/css/page.css" | relative_url }}"/>
|
|
{% else %}
|
|
<link rel="stylesheet" href="{{ "/assets/css/default.css" | relative_url }}"/>
|
|
{% endif %}
|
|
|
|
|
|
<title>
|
|
{% if page.title %}
|
|
{{ page.title }} · {{ site.title }}
|
|
{% else %}
|
|
{{ site.title }}
|
|
{% endif %}
|
|
</title>
|
|
|
|
<!--FontAwesome-->
|
|
<script src="https://kit.fontawesome.com/fb22317d91.js" crossorigin="anonymous"></script>
|
|
|
|
<!--Favicons-->
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ "/assets/favicons/apple-touch-icon.png" | relative_url }}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ "/assets/favicons/favicon-32x32.png" | relative_url }}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ "/assets/favicons/favicon-16x16.png" | relative_url }}">
|
|
<link rel="manifest" href="{{ "/assets/favicons/site.webmanifest" | relative_url }}">
|
|
<link rel="mask-icon" href="{{ "/assets/favicons/safari-pinned-tab.svg" | relative_url }}" color="#5bbad5">
|
|
<link rel="shortcut icon" href="{{ "/assets/favicons/favicon.ico" | relative_url }}">
|
|
<meta name="apple-mobile-web-app-title" content="GLaDOS">
|
|
<meta name="application-name" content="GLaDOS">
|
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
<meta name="msapplication-config" content="{{ "/assets/favicons/browserconfig.xml" | relative_url }}">
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
</head> |