Bluesky app fork with some witchin' additions 💫

Access content of extended block properly (block.Super instead of super()) (#7026)

authored by Dmitry Grachikov and committed by GitHub fec3352b bc4b4a3c

Changed files
+2 -2
bskyweb
templates
+2 -2
bskyweb/templates/error.html
··· 12 12 {# don't include the bundle on non-404 error pages #} 13 13 {% block head_bundle %} 14 14 {% if statusCode == 404 %} 15 - {{ super() }} 15 + {{ block.Super }} 16 16 {% else %} 17 17 {% endif %} 18 18 {% endblock %} 19 19 20 20 {%- block body_all %} 21 21 {% if statusCode == 404 %} 22 - {{ super() }} 22 + {{ block.Super }} 23 23 {% else %} 24 24 <h1>{{ statusCode }}: Server Error</h1> 25 25 <p>Sorry about that! Our <a href="https://bluesky.statuspage.io/">Status Page</a> might have more context.