mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-03-13 20:37:15 +00:00
79 lines
2.2 KiB
Plaintext
79 lines
2.2 KiB
Plaintext
<header class="main__header">
|
|
{% if isArticle or hasBreadcrumbs %}
|
|
<ul class="breadcrumbs">
|
|
{% set breadcrumbNavPages = collections.all | eleventyNavigationBreadcrumb(articleTitle or pageTitle or title) %}
|
|
{%- for entry in breadcrumbNavPages %}
|
|
<li>
|
|
<a href="{{ entry.url }}">{{ entry.title }}</a>
|
|
</li>
|
|
{%- endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if isArticle %}
|
|
<h1>{{ articleTitle }}</h1>
|
|
<div class="article__info">
|
|
<p>Posted on {{ date | formatDate }} by {{ sitemeta.siteAuthor.name }}
|
|
{% if updated %}
|
|
• Last updated on {{ updated | formatDate }}</p>
|
|
{% endif %}
|
|
{% if categories %}
|
|
<p>Categories:
|
|
{% for cat in categories %}
|
|
<a href="/categories/{{ cat | slugify }}">{{ cat }}</a>{% if not loop.last %}, {% endif %}
|
|
{% endfor %}
|
|
</p>
|
|
{% endif %}
|
|
<p>{{ content | emojiReadTime }}</p>
|
|
</div>
|
|
{% else %}
|
|
<h1>{{ pageTitle or title }}</h1>
|
|
{% if desc %}
|
|
<p>{{ desc }}</p>
|
|
{% endif %}
|
|
{% endif %}
|
|
</header>
|
|
|
|
<div class="content__wrapper">
|
|
{% if toc %}
|
|
{% include "global/toc.njk" %}
|
|
{% endif %}
|
|
|
|
{% if isArticle %}
|
|
<article class="article">
|
|
{{ content | safe }}
|
|
</article>
|
|
{% else %}
|
|
<div class="content {{'content--divided' if isContentDivided }}">
|
|
{{ content | safe }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if
|
|
tags and tags.includes("articles")
|
|
or tags and tags.includes("posts")
|
|
or page.url === "/articles/"
|
|
or tags and tags.includes("blog pages")
|
|
%}
|
|
{% include "main/content-nav.njk" %}
|
|
{% endif %}
|
|
|
|
{% block shrineInfo %}{% endblock %}
|
|
</div>
|
|
|
|
<style>
|
|
.breadcrumbs {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0 0 0.7em 0;
|
|
display: flex;
|
|
gap: 0.5em;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.breadcrumbs li::after {
|
|
content: '➔';
|
|
padding-left: 0.3em;
|
|
}
|
|
</style> |