Skip to content

Commit

Permalink
fixing img paths for staging
Browse files Browse the repository at this point in the history
  • Loading branch information
gvn committed Oct 1, 2018
1 parent 64f93ae commit 8fa00a6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

{% block guts %}
<div class="container-fluid text-center product-header bg-gray">
<img class="mb-0" src="{{mediaUrl}}{{"AWS_LOCATION"|env}}{{product.image}}" width="500"/>
<img class="mb-0" src="{{mediaUrl}}{{"AWS_LOCATION"|env}}/{{product.image}}" width="500"/>
</div>
<div class="container">

Expand Down Expand Up @@ -166,7 +166,7 @@ <h3 class="h3-heading mb-3 mt-5">Related Products</h3>
{% for product in product.related_products.all %}
<div class="col-12 col-md-3">
<a href="/privacynotincluded/product/{{ product.name }}">
<img src="{{ mediaUrl }}{{ product.image }}"/>
<img src="{{mediaUrl}}{{"AWS_LOCATION"|env}}/{{product.image}}"/>
</a>
</div>
{% endfor %}
Expand Down

0 comments on commit 8fa00a6

Please sign in to comment.