Serve images from the CDN

Because it should be quicker than serving them from our app directly.
This commit is contained in:
Chris Hill-Scott
2018-11-29 14:08:53 +00:00
parent e346bfeb9e
commit 5bf6bdcd20
3 changed files with 7 additions and 7 deletions

View File

@@ -26,7 +26,7 @@
{% for option in form.options %}
<div class="column-one-quarter">
<label for="{{ option.id }}">
<img src="/static/images/branding-options/{{ option.data }}.png" alt="" class="bordered-image bottom-gutter-1-3">
<img src="{{ asset_path }}images/branding-options/{{ option.data }}.png" alt="" class="bordered-image bottom-gutter-1-3">
</label>
{{ radio(option) }}
</div>