aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/src/material/templates/blog-post.html
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2023-12-15 09:22:24 +0800
committer简律纯 <i@jyunko.cn>2023-12-15 09:22:24 +0800
commitdaa378d6964841d9a5c4bc39815d75c672117dea (patch)
tree8cfc92f73bcbd80a472ecc5f1f65df5b72ff1892 /docs/src/material/templates/blog-post.html
parentefb0730e641f575368e7e80fec80be16a03c95f4 (diff)
downloadinfini-daa378d6964841d9a5c4bc39815d75c672117dea.tar.gz
infini-daa378d6964841d9a5c4bc39815d75c672117dea.zip
refactor(docs/src): delete `material` dir
Diffstat (limited to 'docs/src/material/templates/blog-post.html')
-rw-r--r--docs/src/material/templates/blog-post.html112
1 files changed, 0 insertions, 112 deletions
diff --git a/docs/src/material/templates/blog-post.html b/docs/src/material/templates/blog-post.html
deleted file mode 100644
index 8e3e5f2c..00000000
--- a/docs/src/material/templates/blog-post.html
+++ /dev/null
@@ -1,112 +0,0 @@
-{#-
- 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 md-nav--primary">
- <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__item--section">
- <div class="md-post__title">
- <span class="md-ellipsis">
- {{ lang.t("blog.meta") }}
- </span>
- </div>
- <nav class="md-nav">
- <ul class="md-nav__list">
- <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>
- </li>
- </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 %}