diff --git a/docs/_includes/elements/anchor.html b/docs/_includes/elements/anchor.html
index d6e6eab3..0fc7b7b9 100644
--- a/docs/_includes/elements/anchor.html
+++ b/docs/_includes/elements/anchor.html
@@ -5,4 +5,9 @@
#
+ {% if include.tag %}
+
+ {{ include.tag }}
+
+ {% endif %}
diff --git a/docs/_includes/elements/backers-paragraph.html b/docs/_includes/elements/backers-paragraph.html
new file mode 100644
index 00000000..e27b59de
--- /dev/null
+++ b/docs/_includes/elements/backers-paragraph.html
@@ -0,0 +1,16 @@
+{% if site.data.backers[include.tier].size > 0 or site.data.github[include.tier].size > 0 %}
+
{{ include.title }}
+
+
+ {% for pt in site.data.backers[include.tier] reversed %}
+ -
+ {{ pt.name }}
+
+ {% endfor %}
+ {% for gh in site.data.github[include.tier] reversed %}
+ -
+ {{ gh }}
+
+ {% endfor %}
+
+{% endif %}
diff --git a/docs/_includes/elements/sponsor-item.html b/docs/_includes/elements/sponsor-item.html
index 1b69f806..0f210b18 100644
--- a/docs/_includes/elements/sponsor-item.html
+++ b/docs/_includes/elements/sponsor-item.html
@@ -9,9 +9,6 @@
class="bd-sponsor-item {{ include.classname }}"
href="{{ sponsor.url }}"
target="_blank"
-{% unless sponsor.follow or sponsor.noopener %}
-rel="nofollow"
-{% endunless %}
{% if sponsor.noopener %}
rel="noopener"
{% endif %}
diff --git a/docs/_includes/elements/tw.html b/docs/_includes/elements/tw.html
index 3f9251e8..a81d45d8 100644
--- a/docs/_includes/elements/tw.html
+++ b/docs/_includes/elements/tw.html
@@ -1,7 +1,10 @@
{% assign tweet = site.data.love.tweets_by_id[include.tweet_id] %}
{% assign twUrl = "https://twitter.com/" | append: tweet.username | append: "/status/" | append: tweet.id %}
-
+