···11+---
22+layout: page
33+title: Changelog
44+permalink: /changelog/
55+---
66+77+## Version 1.1
88+99+**New:**
1010+1111+- **`archive` layout:**
1212+ Show all your posts in a single list!
1313+- **New Setting `site.translations.byline`:**
1414+ Now you can prepend a byline for an author name in the post footer.
1515+- **Custom includes:**
1616+ You can add HTML markup to the `<head>`, below your post and at the end of the `</body>` tag.
1717+1818+**Fix:**
1919+2020+- Hides `post.author` on single-author blogs.
2121+- Hides excerpt on link posts in archive pages.
2222+- Softens the shadows to increase legibility.
+8
README.md
···211211}
212212```
213213214214+## Custom includes
215215+216216+Linus offers three custom includes to add markup to different parts of your website:
217217+218218+- `head.html`: right before the closing `</head>` tag.
219219+- `below-post.html`: after the post footer in post pages.
220220+- `end.html`: right before the closing `</body>` tag.
221221+214222## Development
215223216224To set up your environment to develop this theme, run `bundle install`.
+3
_includes/below-post.html
···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 %}
_includes/footer.html
_includes/site/footer.html
+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 %}
_includes/header.html
_includes/site/header.html
+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>