From 70bbbb7411ffac55daf26295cbba55fd3fa4101c Mon Sep 17 00:00:00 2001 From: Mike Lissner Date: Tue, 5 Sep 2017 12:41:43 -0700 Subject: Adds DNT meta so that Twitter doesn't track us As explained on this page, this meta tag prevents Twitter from using your webpage to track people: https://dev.twitter.com/web/overview/privacy#what-privacy-options-do-website-publishers-have Generally speaking, this is the kind of tracking that nobody expects. Nobody thinks that by going to *my* website, which shows some tweets, that Twitter will be tracking them. Let's turn that off by default. Hopefully this isn't controversial. --- pelican-bootstrap3/templates/includes/twitter_cards.html | 1 + 1 file changed, 1 insertion(+) (limited to 'pelican-bootstrap3') diff --git a/pelican-bootstrap3/templates/includes/twitter_cards.html b/pelican-bootstrap3/templates/includes/twitter_cards.html index 3145915..036721f 100644 --- a/pelican-bootstrap3/templates/includes/twitter_cards.html +++ b/pelican-bootstrap3/templates/includes/twitter_cards.html @@ -1,6 +1,7 @@ {% if TWITTER_CARDS and USE_OPEN_GRAPH %} {# Do not include duplicates tag with og ones. #} {# Twitter is able to infer them from og. #} + {% if TWITTER_USERNAME %} -- cgit