aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/components/html_head.html
blob: be9b3b4ba36dbb68abc404a12f35cb5cab1b2e04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>{{ SITENAME }}</title>

    {% if type == 'home' %}
        <link href="{{ SITEURL }}/theme/css/crumbs.css" rel="stylesheet">
        <link href="{{ SITEURL }}/theme/css/cr_title.css" rel="stylesheet"> {# This contains various overrides #}
        <a rel="me" href="https://octodon.social/@spacekookie"></a>
    {% else %}
        <link href="{{ SITEURL }}/theme/css/pygment.css" rel="stylesheet">
        <link href="{{ SITEURL }}/theme/css/crumbs.css" rel="stylesheet">
    {% endif %}

    <link href="https://fonts.googleapis.com/css?family=Montserrat:400,600" rel="stylesheet">

    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.6/css/all.css">
    <link rel="alternate" type="application/rss+xml" href="{{ SITEURL }}/rss.xml" title="{{ SITENAME }} — Latest Posts" />
</head>