nav - show subtitles
This commit is contained in:
parent
3a6ff118bc
commit
d54ed28aa0
3 changed files with 73 additions and 78 deletions
|
|
@ -163,6 +163,11 @@ button.see-more {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding-left: var(--unit--horizontal);
|
padding-left: var(--unit--horizontal);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.panel .text__title h5 {
|
||||||
|
margin-top: calc(var(--unit--vertical) / 2);
|
||||||
|
}
|
||||||
|
|
||||||
.panel__collection--years .text:first-child .text__infos {
|
.panel__collection--years .text:first-child .text__infos {
|
||||||
padding-left: var(--unit--horizontal);
|
padding-left: var(--unit--horizontal);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,32 +1,37 @@
|
||||||
<ul class="texts panel__all-texts panel-item-content__texts hidden">
|
<ul class="texts panel__all-texts panel-item-content__texts hidden">
|
||||||
<?php foreach(page('textes')->grandChildren()->sortBy('published', 'desc') as $article): ?>
|
<?php foreach(page('textes')->grandChildren()->sortBy('published', 'desc') as $article): ?>
|
||||||
<?php
|
<?php
|
||||||
$author = $article->author()->toPage() == null ? "inconnu" : $article->author()->toPage()->title();
|
$author = $article->author()->toPage() == null ? 'inconnu' : $article->author()->toPage()->title();
|
||||||
?>
|
?>
|
||||||
<li
|
<li class="text" x-data="{
|
||||||
class="text"
|
|
||||||
x-data="{
|
|
||||||
title: '<?= str_replace("'", "\'", $article->title()->value()) ?>',
|
title: '<?= str_replace("'", "\'", $article->title()->value()) ?>',
|
||||||
author: '<?= $author ?>',
|
author: '<?= $author ?>',
|
||||||
category: '<?= $article->category() ?>',
|
category: '<?= $article->category() ?>',
|
||||||
keywords: '<?= $article->keywords() ?>',
|
keywords: '<?= $article->keywords() ?>',
|
||||||
}"
|
}" x-show="
|
||||||
x-show="
|
|
||||||
slugify(title).includes(slugify(search))
|
slugify(title).includes(slugify(search))
|
||||||
|| slugify(author).includes(slugify(search))
|
|| slugify(author).includes(slugify(search))
|
||||||
|| slugify(category).includes(slugify(search))
|
|| slugify(category).includes(slugify(search))
|
||||||
|| slugify(keywords).includes(slugify(search))
|
|| slugify(keywords).includes(slugify(search))
|
||||||
"
|
">
|
||||||
>
|
<a href="<?= $article->url() ?>"
|
||||||
<a href="<?= $article->url() ?>" class="text__title no-underline">
|
class="text__title no-underline">
|
||||||
<h4><?= $article->title() ?></h4>
|
<h4><?= $article->title() ?></h4>
|
||||||
|
<?php if ($article->subtitle()->isNotEmpty()): ?>
|
||||||
|
<p><?= $article->subtitle() ?></p>
|
||||||
|
<?php endif ?>
|
||||||
</a>
|
</a>
|
||||||
<div class="text__infos">
|
<div class="text__infos">
|
||||||
<p>
|
<p>
|
||||||
<span class="light">par</span>
|
<span class="light">par</span>
|
||||||
<a class="author" href="/auteurs/<?= Str::slug($author) ?>"><?= $author ?></a><br>
|
<a class="author"
|
||||||
<span class="light">publié le </span><?= $article->published()->toDate('d/m/Y') ?><br>
|
href="/auteurs/<?= Str::slug($author) ?>"><?= $author ?></a><br>
|
||||||
<span class="light">dans</span> <a href="<?= $article->parent()->url() ?>"><?= $article->parent()->title() ?></a> / <a href="/categories/<?= $article->category() ?>"><?= $article->category() ?></a>
|
<span class="light">publié le
|
||||||
|
</span><?= $article->published()->toDate('d/m/Y') ?><br>
|
||||||
|
<span class="light">dans</span> <a
|
||||||
|
href="<?= $article->parent()->url() ?>"><?= $article->parent()->title() ?></a>
|
||||||
|
/ <a
|
||||||
|
href="/categories/<?= $article->category() ?>"><?= $article->category() ?></a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
||||||
|
|
@ -1,71 +1,56 @@
|
||||||
<ul class="panel__collection panel__collection--<?= $collection ?><?= e($collection == 'categories', ' hidden') ?>">
|
<ul
|
||||||
|
class="panel__collection panel__collection--<?= $collection ?><?= e($collection == 'categories', ' hidden') ?>">
|
||||||
<?php foreach($kirby->collection($collection) as $section): ?>
|
<?php foreach($kirby->collection($collection) as $section): ?>
|
||||||
<li
|
<li class="panel__item " x-data='{ isOpen: false }'>
|
||||||
class="panel__item "
|
<a class="no-underline" href="#<?= $section->slug() ?>"
|
||||||
x-data='{ isOpen: false }'
|
id="<?= $section->slug() ?>">
|
||||||
>
|
<button class="panel__toggle-btn" :class="isOpen ? '' : 'short'" @click="isOpen = !isOpen">
|
||||||
<a class="no-underline" href="#<?= $section->slug() ?>" id="<?= $section->slug() ?>">
|
|
||||||
<button
|
|
||||||
class="panel__toggle-btn"
|
|
||||||
:class="isOpen ? '' : 'short'"
|
|
||||||
@click="isOpen = !isOpen"
|
|
||||||
>
|
|
||||||
<h3><?= $section->title() ?></h3>
|
<h3><?= $section->title() ?></h3>
|
||||||
<div
|
<div class="panel__toggle-icon" x-text="isOpen || search.length > 0 ? '-' : '+'"></div>
|
||||||
class="panel__toggle-icon"
|
|
||||||
x-text="isOpen || search.length > 0 ? '-' : '+'"
|
|
||||||
></div>
|
|
||||||
</button>
|
</button>
|
||||||
</a>
|
</a>
|
||||||
<div
|
<div class="panel-item-content" x-show="isOpen || search.length > 0" x-data='{ edito: false }'>
|
||||||
class="panel-item-content"
|
<?php if ($collection === 'years'): ?>
|
||||||
x-show="isOpen || search.length > 0"
|
<div class="panel-item-content__edito" :class="edito ? '' : 'short'" x-show="search.length === 0">
|
||||||
x-data='{ edito: false }'
|
|
||||||
>
|
|
||||||
<?php if ($collection === "years"): ?>
|
|
||||||
<div
|
|
||||||
class="panel-item-content__edito"
|
|
||||||
:class="edito ? '' : 'short'"
|
|
||||||
x-show="search.length === 0"
|
|
||||||
>
|
|
||||||
<?= $section->edito() ?>
|
<?= $section->edito() ?>
|
||||||
</div>
|
</div>
|
||||||
<button
|
<button :class="edito ? 'open' : 'close'" x-show="search.length === 0"
|
||||||
:class="edito ? 'open' : 'close'"
|
class="see-more toggle-btn toggle-btn--left" @click="edito = !edito">Lire</button>
|
||||||
x-show="search.length === 0"
|
|
||||||
class="see-more toggle-btn toggle-btn--left"
|
|
||||||
@click="edito = !edito"
|
|
||||||
>Lire</button>
|
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<ul class="panel-item-content__texts texts">
|
<ul class="panel-item-content__texts texts">
|
||||||
<?php foreach($section->children() as $article): ?>
|
<?php foreach($section->children() as $article): ?>
|
||||||
<?php
|
<?php
|
||||||
$author = $article->author()->toPage() == null ? "inconnu" : $article->author()->toPage()->title();
|
$author = $article->author()->toPage() == null ? 'inconnu' : $article->author()->toPage()->title();
|
||||||
?>
|
?>
|
||||||
<li
|
<li class="text" x-data="{
|
||||||
class="text"
|
|
||||||
x-data="{
|
|
||||||
title: '<?= str_replace("'", "\'", $article->title()->value()) ?>',
|
title: '<?= str_replace("'", "\'", $article->title()->value()) ?>',
|
||||||
author: '<?= $author ?>',
|
author: '<?= $author ?>',
|
||||||
category: '<?= $article->category() ?>',
|
category: '<?= $article->category() ?>',
|
||||||
keywords: '<?= $article->keywords() ?>',
|
keywords: '<?= $article->keywords() ?>',
|
||||||
}"
|
}" x-show="
|
||||||
x-show="
|
|
||||||
slugify(title).includes(slugify(search))
|
slugify(title).includes(slugify(search))
|
||||||
|| slugify(author).includes(slugify(search))
|
|| slugify(author).includes(slugify(search))
|
||||||
|| slugify(category).includes(slugify(search))
|
|| slugify(category).includes(slugify(search))
|
||||||
|| slugify(keywords).includes(slugify(search))
|
|| slugify(keywords).includes(slugify(search))
|
||||||
"
|
">
|
||||||
>
|
<a href="<?= $article->url() ?>"
|
||||||
<a href="<?= $article->url() ?>" class="text__title no-underline">
|
class="text__title no-underline">
|
||||||
<h4><?= $article->title() ?></h4>
|
<h4><?= $article->title() ?></h4>
|
||||||
|
<?php if ($article->subtitle()->isNotEmpty()): ?>
|
||||||
|
<h5><?= $article->subtitle()->inline() ?></h5>
|
||||||
|
<?php endif ?>
|
||||||
</a>
|
</a>
|
||||||
<div class="text__infos">
|
<div class="text__infos">
|
||||||
<p>
|
<p>
|
||||||
<span class="light">par</span>
|
<span class="light">par</span>
|
||||||
<a class="author" href="/auteurs/<?= Str::slug($author) ?>"><?= $author ?></a><br>
|
<a class="author"
|
||||||
<span class="light">publié le </span><?= $article->published()->toDate('d/m/Y') ?><br>
|
href="/auteurs/<?= Str::slug($author) ?>"><?= $author ?></a><br>
|
||||||
<span class="light">dans</span> <a href="<?= $article->parent()->url() ?>"><?= $article->parent()->title() ?></a> / <a href="/categories/<?= $article->category() ?>"><?= $article->category() ?></a>
|
<span class="light">publié le
|
||||||
|
</span><?= $article->published()->toDate('d/m/Y') ?><br>
|
||||||
|
<span class="light">dans</span> <a
|
||||||
|
href="<?= $article->parent()->url() ?>"><?= $article->parent()->title() ?></a>
|
||||||
|
/ <a
|
||||||
|
href="/categories/<?= $article->category() ?>"><?= $article->category() ?></a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue