From 8c48a61114b77fa2a528492d9fd410e33d9976f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 3 Apr 2018 11:02:33 +0200 Subject: [PATCH] Switched attachment rendering to shortcode system Requires Pillar 3b452d14ce32e1a744fc526a922e1bb60b83ef25 or newer. --- cloud/routes.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/cloud/routes.py b/cloud/routes.py index 7509d17..9128049 100644 --- a/cloud/routes.py +++ b/cloud/routes.py @@ -62,15 +62,6 @@ def _homepage_context() -> dict: post.picture = get_file(post.picture, api=api) post.url = url_for_node(node=post) - # Render attachments - try: - post_contents = post['properties']['content'] - except KeyError: - log.warning('Blog post %s has no content', post._id) - else: - post['properties']['content'] = pillar.web.nodes.attachments.render_attachments( - post, post_contents) - # Get latest assets added to any project latest_assets = Node.latest('assets', api=api)