fix Reddit share URL; driveby star, driveby trim dead code
authorM. Taylor Saotome-Westlake <ultimatelyuntruethought@gmail.com>
Sun, 12 Apr 2020 22:03:16 +0000 (15:03 -0700)
committerM. Taylor Saotome-Westlake <ultimatelyuntruethought@gmail.com>
Sun, 12 Apr 2020 22:03:16 +0000 (15:03 -0700)
I would have thought the SITEURL template variable would faithfully
reflect my Pelican SITEURL setting, but instead it was getting
populated as "../../.."?! (A relative-URLs setting??—the root is
"three levels up" from `YYYY/Mon/post-slug/`.) Hardcoding it should be
fine; the site isn't going anywhere (until the virus kills me).

While we're here, get that disgraceful hyphen out of the page
title. And, prune some conditional markup that misled my past self
into thinking that SITEURL would work.

theme/templates/article.html

index 0e6687f..fd28b3c 100644 (file)
@@ -1,20 +1,11 @@
 {% extends "base.html" %}
-{% block title %}{{ article.title }} - {{ SITENAME }}{% endblock %}
+{% block title %}{{ article.title }}  {{ SITENAME }}{% endblock %}
 
 {% block extra_meta %}
 
        <meta name="description" content="{{ article.summary|striptags }}">
-
-{% if PELICAN_SIMPLEGREY_TWITTER_CARD_ACCOUNT %}
-       <meta name="twitter:card" content="summary">
-       <meta name="twitter:creator" content="@{{ PELICAN_SIMPLEGREY_TWITTER_CARD_ACCOUNT }}">
-       <meta name="twitter:title" content="{{ article.title }}">
-       <meta name="twitter:description" content="{{ article.summary|striptags }}">
-       <meta name="twitter:url" content="{{ SITEURL }}/{{ article.url }}">
-{% endif %}
 {% endblock %}
 
-
 {% block content %}
        <article class="full">
 
@@ -32,7 +23,7 @@
           <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
 
           <!-- Reddit social -->
-          <a href="http://www.reddit.com/submit?url={{ SITEURL }}/{{ article.url }}&title={{ article.title }}" target="_blank" title="Submit to Reddit">
+          <a href="http://www.reddit.com/submit?url=unremediatedgender.space/{{ article.url }}&title={{ article.title }}" target="_blank" title="Submit to Reddit">
             <img alt="Submit to Reddit"
                  {# TODO: can store Reddit icon in theme directory rather than with blog images proper?? #}
                  src="/images/reddit.svg" height="30px"/>