feat: 新增技能扩展N7一章相关示例源码

This commit is contained in:
100gle
2022-12-01 18:43:56 +08:00
parent 527d3b655a
commit 72162b7166
14 changed files with 663 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# {% block title %}{% endblock %}
Your environment:
{% block environment %}{% endblock %}
---
Bug detail:
{% block description %}{% endblock %}

View File

@@ -0,0 +1,15 @@
{% extends "base.md" %}
{% block title %}
{{ title }}
{% endblock %}
{% block environment %}
{% for item in setup %}
- {{ item.name }}: {{ item.detail }}
{% endfor %}
{% endblock %}
{% block description %}
{{ description }}
{% endblock %}