-
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.
- Loading branch information
Jaden ACHAIN
committed
Nov 29, 2024
1 parent
e08657b
commit 9b3da9b
Showing
3 changed files
with
22 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{% assign items_categories = "Fiche,Réflexion,Recherche,Écriture" | split: "," %} | ||
|
||
{% assign categories = site.categories %} | ||
|
||
<div class="navbar-item has-dropdown is-hoverable"> | ||
<a class="navbar-link"> | ||
MORE | ||
</a> | ||
<div class="navbar-dropdown has-background-black is-left"> | ||
{% for sitepage in site.html_pages %} | ||
{% unless sitepage.url == '/' or sitepage.url == '/404' or sitepage.url == '/blog' %} | ||
<a href="{{sitepage.url | absolute_url}}" | ||
class="navbar-item has-text-grey-light {% if page.url == sitepage.url | absolute_url %}is-active{% endif %}"> | ||
{{sitepage.title}} | ||
<a class="navbar-link"> | ||
Catégories | ||
</a> | ||
<div class="navbar-dropdown has-background-black is-left"> | ||
{% for category in categories %} | ||
{% if category %} | ||
<a href="{{site.baseurl}}/{{category | slugify: 'latin'}}" | ||
class="navbar-item"> | ||
{{category}} | ||
</a> | ||
{% endunless %} | ||
{% endfor %} | ||
<!-- <hr class="navbar-divider"> | ||
<a class="navbar-item"> | ||
Report an issue | ||
</a> --> | ||
</div> | ||
{% endif %} | ||
{% endfor %} | ||
</div> | ||
</div> |
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