Skip to content

Commit

Permalink
add mozfest stat block
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-lawton committed Dec 14, 2023
1 parent a43cff2 commit ba4089f
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{% load wagtailcore_tags wagtailimages_tags %}

{% block block_content %}
<div class="tw-bg-black tw-dark tw-py-16">
<div class="tw-container">
<div class="tw-row">
{% for stat in self.stats %}
<div class="tw-mb-12 tw-px-8 tw-w-1/2 large:tw-w-1/4">
<p class="tw-h1-heading tw-mb-0">{{ stat.number }}</p>
<p class="tw-my-0">{{ stat.text }}</p>
</div>
{% endfor %}
</div>
</div>
</div>
{% endblock block_content %}

0 comments on commit ba4089f

Please sign in to comment.