Progress page

This commit is contained in:
Jip Fr
2021-04-09 15:40:19 +02:00
parent 8f042e81ae
commit 2ef14bba21
11 changed files with 100 additions and 29 deletions

22
views/progress.handlebars Normal file
View File

@@ -0,0 +1,22 @@
<div class="wrapper">
{{> header}}
<div class="hero">
<div class="hero-meta">
<h1 class="title dot">{{ locale.progressPage.title }}</h1>
<p class="text">{{ locale.progressPage.description }}</p>
</div>
</div>
<div class="all-progress-lists">
{{#each progressLists}}
<div class="purple-card">
{{> progress-list data=this }}
</div>
{{/each}}
</div>
{{> footer }}
</div>