DoubleVerify has some old templates... Created Copado notes since I'm taking over the account. DataSnipper notes and todos.

This commit is contained in:
Norm Rasmussen
2024-04-29 17:08:37 -04:00
parent 4fbd8329f7
commit 3322549ca5
63 changed files with 5777 additions and 8 deletions

View File

@ -0,0 +1,22 @@
<div class="uk-container uk-container-center uk-margin-top uk-margin-large-bottom">
{% if course_catalog.headline or course_catalog.subheadline %}
<div class="uk-text-center uk-padding-large-vertical uk-padding-horizontal">
{% if courses %}
<h2>{{ course_catalog.headline }}</h2>
<h3 class="page-header uk-margin-top-remove">{{ course_catalog.subheadline }}</h3>
{% else %}
<h1>{{ course_catalog.headline_empty_collection }}</h1>
<h2 class="page-header">
{{ course_catalog.subheadline_empty_collection }}
</h2>
{% endif %}
</div>
{% endif %}
<div class="uk-width-small-1-1 uk-width-medium-1-1 uk-padding-horizontal uk-container-center uk-padding-top uk-margin-large-bottom">
<ul class="uk-grid school-website-course-list" data-behavior="listResize">
{% for course in courses %}
{% include "course" %}
{% endfor %}
</ul>
</div>
</div>