A charming Jekyll theme.
jekyll-theme

feat(layout): adds new custom includes

+17 -2
+3
_includes/below-post.html
··· 1 + {% comment %} 2 + 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. 3 + {% endcomment %}
+3
_includes/end.html
··· 1 + {% comment %} 2 + You can create a `_includes/head.html` in your site to add custom scripts, styles and other markup as you wish! 3 + {% endcomment %}
+3
_includes/head.html
··· 1 + {% comment %} 2 + 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. 3 + {% endcomment %}
+6 -2
_layouts/default.html
··· 33 33 <link rel="stylesheet" href="{%- link assets/css/syntax.css -%}" /> 34 34 <link rel="stylesheet" href="{%- link assets/css/theme.css -%}" /> 35 35 <link rel="stylesheet" href="{%- link assets/css/fonts.css -%}" /> 36 + 37 + {%- include head.html -%} 36 38 </head> 37 39 <body> 38 40 <div class="site"> 39 - {% include header.html %} 41 + {% include site/header.html %} 40 42 41 43 <main class="site-content"> 42 44 {{ content }} 43 45 </main> 44 46 45 47 46 - {% include footer.html %} 48 + {% include site/footer.html %} 47 49 </div> 50 + 51 + {%- include end.html -%} 48 52 </body> 49 53 </html>
+2
_layouts/post.html
··· 99 99 {%- endif -%} 100 100 </footer> 101 101 {%- endif -%} 102 + 103 + {%- include below-post.html -%} 102 104 </article> 103 105