mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2024-11-22 17:49:17 +01:00
d554dc2ca7
This reverts commit 27f90c4326
.
69 lines
2.3 KiB
HTML
69 lines
2.3 KiB
HTML
<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, viewport-fit=cover">
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
|
|
<title>{% if page.use-site-title %}{{ site.title }} {{ site.title-separator }} {{ site.description }}{% elsif page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
|
|
|
|
<meta name="author" content="{{ site.author.name }}" />
|
|
|
|
{% if page.subtitle %}
|
|
<meta name="description" content="{{ page.subtitle }}">
|
|
{% endif %}
|
|
|
|
<link rel="alternate" type="application/rss+xml" title="{{ site.title }} {{ site.title-separator }} {{ site.description }}" href="{{ site.baseurl }}/feed.xml" />
|
|
|
|
{% include gtag.html %}
|
|
{% include gtm_head.html %}
|
|
{% include google_analytics.html %}
|
|
|
|
{% if layout.common-ext-css %}
|
|
{% for css in layout.common-ext-css %}
|
|
{% include ext-css.html css=css %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if layout.common-css %}
|
|
{% for css in layout.common-css %}
|
|
<link rel="stylesheet" href="{{ css | prepend: site.baseurl | replace: '//', '/' }}" />
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if layout.common-googlefonts %}
|
|
{% for font in layout.common-googlefonts %}
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family={{ font }}" />
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if page.ext-css %}
|
|
{% for css in page.ext-css %}
|
|
{% include ext-css.html css=css %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if page.css %}
|
|
{% for css in page.css %}
|
|
<link rel="stylesheet" href="{{ css | prepend: site.baseurl | replace: '//', '/' }}" />
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if page.googlefonts %}
|
|
{% for font in page.googlefonts %}
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family={{ font }}" />
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
|
|
<!-- Twitter summary cards -->
|
|
<meta name="twitter:card" content="summary" />
|
|
<meta name="twitter:title" content="{{ page.meta-title }}" />
|
|
<meta name="twitter:description" content="{{ page.meta-description }}">
|
|
<meta name="twitter:image" content="https://slashiee.github.io/cemu_graphic_packs/img/avatar-icon.png" />
|
|
|
|
{% if site.matomo %}
|
|
{% include matomo.html %}
|
|
{% endif %}
|
|
|
|
</head>
|