Skip to content

Commit

Permalink
Merge c9ff526 into fb259da
Browse files Browse the repository at this point in the history
  • Loading branch information
alanmoo committed Oct 23, 2018
2 parents fb259da + c9ff526 commit af4608b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -39,7 +39,7 @@ <h1 class="h1-heading text-center mt-4">Shop Safe This Holiday Season</h1>
{% endif %}
<a class="" href="/privacynotincluded/products/{{ product.slug }}">
<div>
<img src="{{mediaUrl}}{{"AWS_LOCATION"|env}}/{{product.image }}">
<img src="{{mediaUrl}}{{"AWS_LOCATION"|env}}/{{product.image }}" alt="{{product.name}}">
</div>
</a>
</div>
Expand Down
Expand Up @@ -16,7 +16,7 @@ <h1 class="h3-heading">{{ category.name }}</h1>
<div class="category-item-container" >
<a class="" href="/privacynotincluded/products/{{ product.slug }}">
<div class="category-image-container">
<img src="{{ mediaUrl }}{{ "AWS_LOCATION" | env }}/{{ product.image }}">
<img src="{{ mediaUrl }}{{ "AWS_LOCATION" | env }}/{{ product.image }}" alt="{{product.name}}">
</div>
<h3 class="mb-2 h6-heading-uppercase">{{ product.company }}</h3>
<h3 class="mb-5 h5-heading">{{ product.name }}</h3>
Expand Down
Expand Up @@ -11,7 +11,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" alt="{{product.name}}"/>
</div>
<div class="container">

Expand Down

0 comments on commit af4608b

Please sign in to comment.