mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-11-12 01:50:52 +01:00
109 lines
4.3 KiB
HTML
109 lines
4.3 KiB
HTML
{#-
|
|
This file was automatically generated - do not edit
|
|
-#}
|
|
{% extends "main.html" %}
|
|
{% import "partials/nav-item.html" as item with context %}
|
|
{% block container %}
|
|
<div class="md-content md-content--post" data-md-component="content">
|
|
<div class="md-sidebar md-sidebar--post" data-md-component="sidebar" data-md-type="navigation">
|
|
<div class="md-sidebar__scrollwrap">
|
|
<div class="md-sidebar__inner md-post">
|
|
<nav class="md-nav">
|
|
<div class="md-post__back">
|
|
<div class="md-nav__title md-nav__container">
|
|
<a href="{{ page.parent.url | url }}" class="md-nav__link">
|
|
{% include ".icons/material/arrow-left.svg" %}
|
|
<span class="md-ellipsis">
|
|
{{ lang.t("blog.index") }}
|
|
</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% if page.authors %}
|
|
<div class="md-post__authors md-typeset">
|
|
{% for author in page.authors %}
|
|
<div class="md-profile md-post__profile">
|
|
<span class="md-author md-author--long">
|
|
<img src="{{ author.avatar }}" alt="{{ author.name }}">
|
|
</span>
|
|
<span class="md-profile__description">
|
|
<strong>{{ author.name }}</strong><br>
|
|
{{ author.description }}
|
|
</span>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
<ul class="md-post__meta md-nav__list">
|
|
<li class="md-nav__item md-nav__title">
|
|
<div class="md-nav__link">
|
|
<span class="md-ellipsis">
|
|
{{ lang.t("blog.meta") }}
|
|
</span>
|
|
</div>
|
|
</li>
|
|
<li class="md-nav__item">
|
|
<div class="md-nav__link">
|
|
{% include ".icons/material/calendar.svg" %}
|
|
<time datetime="{{ page.config.date.created }}" class="md-ellipsis">
|
|
{{- page.config.date.created | date -}}
|
|
</time>
|
|
</div>
|
|
</li>
|
|
{% if page.config.date.updated %}
|
|
<li class="md-nav__item">
|
|
<div class="md-nav__link">
|
|
{% include ".icons/material/calendar-clock.svg" %}
|
|
<time datetime="{{ page.config.date.updated }}" class="md-ellipsis">
|
|
{{- page.config.date.updated | date -}}
|
|
</time>
|
|
</div>
|
|
</li>
|
|
{% endif %}
|
|
{% if page.categories %}
|
|
<li class="md-nav__item">
|
|
<div class="md-nav__link">
|
|
{% include ".icons/material/bookshelf.svg" %}
|
|
<span class="md-ellipsis">
|
|
{{ lang.t("blog.categories.in") }}
|
|
{% for category in page.categories %}
|
|
<a href="{{ category.url | url }}">
|
|
{{- category.title -}}
|
|
</a>
|
|
{%- if loop.revindex > 1 %}, {% endif -%}
|
|
{% endfor -%}
|
|
</span>
|
|
</div>
|
|
</li>
|
|
{% endif %}
|
|
{% if page.config.readtime %}
|
|
{% set time = page.config.readtime %}
|
|
<li class="md-nav__item">
|
|
<div class="md-nav__link">
|
|
{% include ".icons/material/clock-outline.svg" %}
|
|
<span class="md-ellipsis">
|
|
{% if time == 1 %}
|
|
{{ lang.t("readtime.one") }}
|
|
{% else %}
|
|
{{ lang.t("readtime.other") | replace("#", time) }}
|
|
{% endif %}
|
|
</span>
|
|
</div>
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
{% if "toc.integrate" in features %}
|
|
{% include "partials/toc.html" %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<article class="md-content__inner md-typeset">
|
|
{% block content %}
|
|
{% include "partials/content.html" %}
|
|
{% endblock %}
|
|
</article>
|
|
</div>
|
|
{% endblock %}
|