|
| 1 | +--- |
| 2 | +layout: layouts/base.njk |
| 3 | +--- |
| 4 | +<div class="fr-container fr-py-6w"> |
| 5 | + {% if showBreadcrumb %} |
| 6 | + {% include "components/breadcrumb.njk" %} |
| 7 | + {% endif %} |
| 8 | + <div class="fr-grid-row fr-grid-row--center" data-pagefind-body> |
| 9 | + <div class="fr-col-12 fr-col-md-8"> |
| 10 | + {% set tagsUrl = "/bluehats/tags/" %} |
| 11 | + {% include "components/taggroup.njk" %} |
| 12 | + <div class="fr-grid-row"> |
| 13 | + <div class="fr-col-12 fr-col-md-9"> |
| 14 | + <hgroup> |
| 15 | + <h1>{{ title }}</h1> |
| 16 | + </hgroup> |
| 17 | + </div> |
| 18 | + <div class="fr-col-12 fr-col-md-3"> |
| 19 | + {% include "templates/share.njk" %} |
| 20 | + </div> |
| 21 | + </div> |
| 22 | + |
| 23 | + {% if description %} |
| 24 | + <p class="fr-text--lead"> |
| 25 | + {{ description }} |
| 26 | + </p> |
| 27 | + {% endif %} |
| 28 | + |
| 29 | + {{ content | safe }} |
| 30 | + |
| 31 | + {% if video %} |
| 32 | + <figure class="fr-content-media" role="group"> |
| 33 | + <div class="fr-content-media__img"> |
| 34 | + <iframe class="fr-responsive-vid" title="{{ video.title }}" src="{{ video.src }}" frameborder="0" |
| 35 | + allowfullscreen="" sandbox="allow-same-origin allow-scripts allow-popups"></iframe> |
| 36 | + </div> |
| 37 | + <figcaption class="fr-content-media__caption">{{ video.title }}</figcaption> |
| 38 | + </figure> |
| 39 | + {% endif %} |
| 40 | + |
| 41 | + {% if slides %} |
| 42 | + <figure class="fr-content-media" role="group"> |
| 43 | + <div class="fr-content-media__img"> |
| 44 | + <iframe class="fr-responsive-vid" title="{{ slides.title }}" src="{{ slides.src }}" |
| 45 | + mozallowfullscreen="true" webkitallowfullscreen="true" frameborder="0"></iframe> |
| 46 | + </div> |
| 47 | + <figcaption class="fr-content-media__caption">Support de présentation</figcaption> |
| 48 | + </figure> |
| 49 | + {% endif %} |
| 50 | + </div> |
| 51 | + </div> |
| 52 | + |
| 53 | + {% if collections.bluehats_posts %} |
| 54 | + {% set currentPosts = collections.bluehats_posts %} |
| 55 | + {% include "previousnextlinks.njk" %} |
| 56 | + {% endif %} |
| 57 | +</div> |
0 commit comments