···11+{% comment %}
22+ You can create a `_includes/head.html` in your site to add custom scripts, styles and other markup right after your post in a post page.
33+{% endcomment %}
+3
_includes/end.html
···11+{% comment %}
22+ You can create a `_includes/head.html` in your site to add custom scripts, styles and other markup as you wish!
33+{% endcomment %}
+3
_includes/head.html
···11+{% comment %}
22+ You can create a `_includes/head.html` in your site to add custom scripts, styles and other markup that will be added right before the closing `</head>` tag.
33+{% endcomment %}
+6-2
_layouts/default.html
···3333 <link rel="stylesheet" href="{%- link assets/css/syntax.css -%}" />
3434 <link rel="stylesheet" href="{%- link assets/css/theme.css -%}" />
3535 <link rel="stylesheet" href="{%- link assets/css/fonts.css -%}" />
3636+3737+ {%- include head.html -%}
3638 </head>
3739 <body>
3840 <div class="site">
3939- {% include header.html %}
4141+ {% include site/header.html %}
40424143 <main class="site-content">
4244 {{ content }}
4345 </main>
444645474646- {% include footer.html %}
4848+ {% include site/footer.html %}
4749 </div>
5050+5151+ {%- include end.html -%}
4852 </body>
4953</html>