
- Change archives templates to be clean and present a simple list of all articles - Banner : add bottom margin to space the content - Banner : add specific condition for page, categories and tags respectively DISPLAY_PAGES_ON_MENU, DISPLAY_CATEGORIES_ON_MENU, DISPLAY_TAGS_ON_MENU so the user can fine tune what appears in the menu - Banner : add condition on SITEAVATAR to not display it if it's not defined. Default is None.
43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
HTML
<header class="site-header">
|
|
<div class="banner">
|
|
<a href="{{ SITEURL }}">
|
|
{% if SITEAVATAR %}
|
|
<img class="logo" src="{{ SITEURL }}/{{ SITEAVATAR }}"></img>
|
|
{% endif %}
|
|
<h1 class="title">{{ SITENAME }}</h1>
|
|
<h2 class="subtitle">{{ SITESUBTITLE }}</h2>
|
|
</a>
|
|
</div>
|
|
<div>
|
|
<menu>
|
|
<li class="menu-item">
|
|
<a href="{{ SITEURL }}/"{% if page_name=='index' %} aria-current="page" {% endif %}>
|
|
Accueil
|
|
</a>
|
|
</li>
|
|
{% if DISPLAY_PAGES_ON_MENU %}
|
|
{% for p in pages %}
|
|
<li class="menu-item">
|
|
<a href="{{ SITEURL }}/{{ p.url }}" {% if p==page %} aria-current="page" {% endif %}>{{ p.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if DISPLAY_CATEGORIES_ON_MENU %}
|
|
{% for cat, null in categories %}
|
|
<li class="menu-item">
|
|
<div>
|
|
<a href="{{ SITEURL }}/{{ cat.url }}" {% if cat==category %} aria-current="page" {% endif %}>{{ cat }}</a>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if DISPLAY_TAGS_ON_MENU %}
|
|
<li class="menu-item">
|
|
<div>
|
|
<a href="{{ SITEURL }}/tags.html" {% if page_name=='tags' %} aria-current="page" {% endif %}>Tags</a>
|
|
</div>
|
|
</li>
|
|
{% endif %}
|
|
</menu>
|
|
</div>
|
|
</header>
|