diff --git a/articles/compressor.py b/articles/compressor.py
deleted file mode 100644
index ed3a014..0000000
--- a/articles/compressor.py
+++ /dev/null
@@ -1,37 +0,0 @@
-import itertools
-
-from django.conf import settings
-
-
-class DummyArticleWithCode:
- has_code = True
-
-
-class DummyArticleNoCode:
- has_code = False
-
-
-class DummyNonAuthenticatedUser:
- is_authenticated = False
-
-
-class DummyAuthenticatedUser:
- is_authenticated = True
-
-
-def offline_context():
- article_possibilities = [None, DummyArticleWithCode(), DummyArticleNoCode()]
- user_possibilities = [DummyAuthenticatedUser(), DummyNonAuthenticatedUser()]
- goatcounter_possibilities = [None, settings.GOATCOUNTER_DOMAIN]
- all_possibilities = [
- article_possibilities,
- user_possibilities,
- goatcounter_possibilities,
- ]
- for _tuple in itertools.product(*all_possibilities):
- yield {
- "STATIC_URL": settings.STATIC_URL,
- "article": _tuple[0],
- "user": _tuple[1],
- "goatcounter_domain": _tuple[2],
- }
diff --git a/articles/templates/articles/base.html b/articles/templates/articles/base.html
index 849d2f3..e5f43dd 100644
--- a/articles/templates/articles/base.html
+++ b/articles/templates/articles/base.html
@@ -1,4 +1,4 @@
-{% load static compress %}
+{% load static %}
{% spaceless %}
@@ -14,17 +14,15 @@
{% include "articles/snippets/analytics_head.html" %}
{% include "articles/snippets/page_metadata.html" %}
- {% compress css inline %}
-
-
-
- {% if article and article.has_code %}
-
- {% endif %}
- {% if user.is_authenticated %}
-
- {% endif %}
- {% endcompress %}
+
+
+
+ {% if article and article.has_code %}
+
+ {% endif %}
+ {% if user.is_authenticated %}
+
+ {% endif %}
{% block append_css %}
{% endblock %}
@@ -61,11 +59,9 @@
{% include "articles/snippets/analytics.html" %}
-{% compress js inline %}
- {% if user.is_authenticated %}
-
- {% endif %}
-{% endcompress %}
+{% if user.is_authenticated %}
+
+{% endif %}