You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -128,8 +128,6 @@ Google Analytics can be enabled via the site configuration too. Add your trackin
128
128
Date format can be customised in the `/_config.yml` with the option `date_format` (please refer to Liquid date filters documentation for learning about formatting possibilities):
129
129
`date_format: "%-d %B %Y" # NOTE: only placeholder formatting is supported (do not try to use ordinal dates introduced in Jekyll 3.8)`
130
130
131
-
Additional customizations can be included in header or body using `site-before-start.html` or `site-before-end.html` files. `site-before-start.html` is included just before the closing `</head>` tag and `site-before-end.html` is included just before the closing `</body>` tag.
132
-
133
131
### Site performance settings
134
132
135
133
Alembic comes with a couple of options to enhance the speed and overall performance of the site you build upon it.
@@ -246,6 +244,11 @@ Example usage: `{% include site-search.html %}`
246
244
247
245
This include has no options. This include will add a block of javascript to the page and javascript reference in order for the search field to work correctly.
Optional html includes for adding scripts, css, js or any embed code you wish to add to every page without the need to overwrite the entire `default.html` template.
249
+
250
+
**Example usage:** These are different to other includes as they are designed to be overwritten. If you create a `site-before-start.html` file in the `_includes/` the contents of the file will be included just before the closing `</head>` tag. If you create a `site-before-end.html` file the contents of the file will be included just before the closing `</body>` tag.
251
+
249
252
## Page layouts
250
253
251
254
As well as `page`, `post`, `blog`, there are a few alternative layouts that can be used on pages:
0 commit comments