-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add a placeholder video to the homepage (#23)
* feat: add a placeholder video to the homepage * fix: make iframe responsive * fix: make caption i18n friendly
- Loading branch information
1 parent
56486af
commit 1254dda
Showing
3 changed files
with
28 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
{% ckan_extends %} | ||
|
||
{% block bottom_container_left_label %}{{ _('Section title') }}{% endblock %} | ||
{% block top_container_title %}{{ _('Find out more about the repository') }}{% endblock %} | ||
|
||
{% block bottom_container_left_content_label %}{{ _('Indicators') }}{% endblock %} | ||
{% block top_container %} | ||
<div class="row insight-row insights-upper-item"> | ||
<div class="d-flex justify-content-center"> | ||
<figure class="figure"> | ||
<iframe class="figure-img" width="560" height="315" src="https://www.youtube.com/embed/BzhjEphkQzQ?si=tLJ2xcxEjxIQvOIA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> | ||
<figcaption class="figure-caption">{{ _('[Coming Soon] Watch this video to find out more about the Zambia Research and Evaluation Repository') }}</figcaption> | ||
</figure> | ||
</div> | ||
</div> | ||
{% endblock %} | ||
|
||
{% block bottom_container_right_label %}Data hub stats{% endblock %} | ||
{% block bottom_container %}{% endblock bottom_container %} |