aboutsummaryrefslogtreecommitdiff
path: root/theme
diff options
context:
space:
mode:
Diffstat (limited to 'theme')
-rw-r--r--theme/static/styles.css1
-rw-r--r--theme/templates/post.html2
2 files changed, 0 insertions, 3 deletions
diff --git a/theme/static/styles.css b/theme/static/styles.css
index 4e7a7b1..19e4711 100644
--- a/theme/static/styles.css
+++ b/theme/static/styles.css
@@ -3,7 +3,6 @@ a, a:visited { color: #0000ff; }
nav ul { list-style: none; padding: 0; display: flex; flex-direction: row; }
nav ul li { padding-right: 0.5rem;}
img { max-width: 100%; }
-.bubbles-vote { min-height: 20px; margin-top: 1rem; }
.post-list { padding: 0; padding-inline-start: 0; }
.post-list-item { display: flex; list-style: none; align-items: baseline; }
.post-list-item time { padding-right: 0.5rem; white-space: nowrap; }
diff --git a/theme/templates/post.html b/theme/templates/post.html
index cffde63..a2951b0 100644
--- a/theme/templates/post.html
+++ b/theme/templates/post.html
@@ -7,13 +7,11 @@
{% elif project_description is defined %}
<meta property="og:description" content="{{ project_description }}" />
{% endif %}
-<script src="https://bubbles.town/vote.js" defer></script>
{% endblock %}
{% block main %}
<article>
<h1>{{ post.title }}</h1>
<p><time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d") }}</time>{% if post.description is defined %} &middot; {{ post.description }}{% endif %}</p>
- <div class="bubbles-vote"></div>
<div>{{ post.html | safe }}</div>
<div><a href="mailto:[email protected]">Reply via email &rarr;</a></div>
<div><i>...or, comment on this post on <a href="https://bubbles.town/source/cleberg.net">Bubbles</a>!</i></div>