Add BLTC legacy logo to subscription ad

This commit is contained in:
Nathan Chapman 2023-01-28 17:50:54 -07:00
parent fa0e3968f2
commit af12964648
2 changed files with 45 additions and 4 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -1,3 +1,4 @@
{% load static %}
<html lang="en">
<head>
<meta charset="UTF-8">
@ -75,6 +76,15 @@
font-weight: 400;
}
.logo {
width: 12rem;
}
.flex {
display: flex;
justify-content: space-between;
gap: 1rem;
}
.text-center {
text-align: center;
}
@ -100,10 +110,15 @@
<h1>SAVE 10%</h1>
<h4><a href="{% url 'storefront:subscription-form' %}">COFFEE SUBSCRIPTIONS ARE HERE &rarr;</a></h4>
<p>Never run out of coffee with automatic delivery</p>
<div class="flex">
<dl>
<dt>Every:</dt>
<dd>7 days<br>14 days<br>30 days</dd>
</dl>
<p class="text-center">
<img class="logo" src="{% static 'images/bltc_logo_legacy_white.svg' %}">
</p>
</div>
</section>
</article>
</body>