Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ theme_config:
back: ".."
date_format: "%Y%m%d"
monochrome_images: true
footer: true # set to false to hide the footer

plugins:
- jekyll-feed
Expand Down
4 changes: 3 additions & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
</div>
</main>

{%- include footer.html -%}
{%- unless site.theme_config.footer == false -%}
{%- include footer.html -%}
{%- endunless -%}

{% if page.custom_js %}
{% for js_file in page.custom_js %}
Expand Down