feat: 新增技能扩展N7一章相关示例源码
This commit is contained in:
11
code/newsletter/N7/templates/inheritance/base.md
Normal file
11
code/newsletter/N7/templates/inheritance/base.md
Normal file
@@ -0,0 +1,11 @@
|
||||
# {% block title %}{% endblock %}
|
||||
|
||||
Your environment:
|
||||
|
||||
{% block environment %}{% endblock %}
|
||||
|
||||
---
|
||||
|
||||
Bug detail:
|
||||
|
||||
{% block description %}{% endblock %}
|
||||
15
code/newsletter/N7/templates/inheritance/bug_report.md
Normal file
15
code/newsletter/N7/templates/inheritance/bug_report.md
Normal 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 %}
|
||||
Reference in New Issue
Block a user