forked from projects/fipamo
a9c88f1430
Fixed the issue where the text edit controller would scroll right off the screen. Now it stick when it's the bottom of the header. Also changed the background color of page links on the Start and Book pages to indicate there is no image. It's just cleaner
31 lines
1,013 B
Twig
31 lines
1,013 B
Twig
<section role="index-header">
|
|
<div role="index-header-left">
|
|
<h1>Recent</h1>
|
|
</div>
|
|
<div role="index-header-right"></div>
|
|
</section>
|
|
<section role="index-recent-pages">
|
|
{% if data["entryCount"] != 0 %}
|
|
{% for page in data['pages'] %}
|
|
{% if page.media[0].type == 'mp4' %}
|
|
|
|
<a href="/dashboard/page/edit/{{ page.uuid }}" id="{{ page.uuid }}" class="post-video-link recent-link">
|
|
{{ include("dash/partials/recent-meta.twig") }}
|
|
<video class="post-video" loop muted autoplay>
|
|
<source src="{{ page.media[0].file }}" type="video/mp4">
|
|
Sorry, your browser doesn't support embedded videos.
|
|
</video>
|
|
</a>
|
|
|
|
{% else %}
|
|
<a href="/dashboard/page/edit/{{ page.uuid }}" id="{{ page.uuid }}" class="post-link recent-link" style="background: url({{ page.media[0].file }}) no-repeat center center / cover #fc6399">
|
|
{{ include("dash/partials/recent-meta.twig") }}
|
|
</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% else %}
|
|
There are no pages
|
|
{% endif %}
|
|
|
|
</section>
|