mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 09:22:49 +03:00
32 lines
965 B
HTML
32 lines
965 B
HTML
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>
|
|
{% if page.url == site.baseurl %}
|
|
{{ page.title }}
|
|
{% else %}
|
|
{{ page.title }} · Ghost
|
|
{% endif %}
|
|
</title>
|
|
|
|
<!-- Ghost core CSS -->
|
|
<link href="../dist/css/ghost.min.css" rel="stylesheet">
|
|
|
|
|
|
<!-- Documentation extras -->
|
|
{% if site.github %}
|
|
<link href="../assets/css/docs.min.css" rel="stylesheet">
|
|
{% else %}
|
|
<link href="../assets/css/src/docs.css" rel="stylesheet">
|
|
<link href="../assets/css/src/pygments-manni.css" rel="stylesheet">
|
|
{% endif %}
|
|
|
|
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
|
|
<script src="../assets/js/ie10-viewport-bug-workaround.js"></script>
|
|
<script src="../assets/js/ie-emulation-modes-warning.js"></script>
|
|
|
|
<!-- Favicons -->
|
|
<link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-precomposed.png">
|
|
<link rel="icon" href="/favicon.ico">
|