Remove breadcrumbs from blog posts

This commit is contained in:
Jonah Aragon 2021-05-03 22:10:05 -05:00
parent 6b14a9c37f
commit b02f4a9f98
6 changed files with 5 additions and 40 deletions

10
Gemfile
View File

@ -1,17 +1,7 @@
source "https://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "jekyll", "~> 4.2"
# Install jekyll-brotli gem (https://github.com/philnash/jekyll-brotli/)
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.6"
gem "jekyll-brotli", "~> 2.3"

View File

@ -1,18 +1,3 @@
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Privacy Guides
email: jonah@privacyguides.org
description: >- # this means to ignore newlines until "baseurl:"
@ -55,15 +40,3 @@ plugins:
- jekyll-feed
- jekyll-brotli
exclude: [privacytools.io/]
# Exclude from processing.
# The following items will not be processed, by default. Create a custom list
# to override the default setting.
# exclude:
# - Gemfile
# - Gemfile.lock
# - node_modules
# - vendor/bundle/
# - vendor/cache/
# - vendor/gems/
# - vendor/ruby/

View File

@ -1,6 +1,3 @@
{% include hr.html %}
{% include breadcrumbs.html %}
<p><em><strong>Privacy Guides</strong> is a socially motivated website that provides information for protecting your data security and privacy.</em></p>
<p><i class="fab fa-creative-commons fa-fw"></i><i class="fab fa-creative-commons-by fa-fw"></i><i class="fab fa-creative-commons-nc fa-fw"></i><i class="fab fa-creative-commons-sa fa-fw"></i> Unless otherwise noted, the original content on this website is licensed under the <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.

View File

@ -7,5 +7,7 @@ layout: default
{{ page.description }}
</p>{% endif %}
{{ content }}
{% include hr.html %}
{% include breadcrumbs.html %}
{% include footer.html %}
</div>

View File

@ -23,5 +23,6 @@ layout: default
{% if page.canonical or page.cover_src_publisher %}<hr class="m-5" />
{% if page.cover_src_publisher %}<p><em>Cover photo: <a href="{{ page.cover_src }}">{{ page.cover_src_publisher }}</a>. Used with permission.</em></p>{% endif %}
{% if page.canonical %}<p><em>This post was originally published on <a href="{{ page.canonical }}">{% if page.canonical_publisher %}{{ page.canonical_publisher }}{% else %}{{ page.canonical }}{% endif %}</a> and has been syndicated here with the permission of the author or publication.</em>{% endif %}</p>{% endif %}
{% include hr.html %}
{% include footer.html %}
</div>

View File

@ -20,5 +20,7 @@ layout: default
</div>
{{ content }}
{% include downloads.html %}
{% include hr.html %}
{% include breadcrumbs.html %}
{% include footer.html %}
</div>