mobile > index > slideshow : fix layout Safari problem
All checks were successful
Deploy / Deploy to Production (push) Successful in 3s
All checks were successful
Deploy / Deploy to Production (push) Successful in 3s
This commit is contained in:
parent
0badd67b46
commit
06fc040f80
6 changed files with 111 additions and 113 deletions
|
|
@ -1,11 +1,14 @@
|
|||
<?php snippet('header') ?>
|
||||
|
||||
<nav class="filter-menu">
|
||||
<ul class="filter-menu">
|
||||
<?php foreach ($categories as $key => $category): ?>
|
||||
<li>
|
||||
<button data-filter="<?= Str::slug($category) ?>"><?= $category ?></button>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</nav>
|
||||
<nav class="projects-index">
|
||||
</ul>
|
||||
|
||||
<ul class="projects-index">
|
||||
<?php foreach ($page->children()->listed()->sortBy('date', 'desc') as $project): ?>
|
||||
<li data-category="<?= Str::slug($project->category()) ?>" data-slug="<?= $project->slug() ?>">
|
||||
<div class="fix">
|
||||
|
|
@ -39,7 +42,7 @@
|
|||
</li>
|
||||
<?php endforeach; ?>
|
||||
<button class="all-projects-closer"></button>
|
||||
</nav>
|
||||
</ul>
|
||||
|
||||
<script src="/assets/js/router.js"></script>
|
||||
<script src="/assets/js/project-slideshow.js"></script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue