-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathmkdocs.yml
More file actions
63 lines (63 loc) · 1.93 KB
/
mkdocs.yml
File metadata and controls
63 lines (63 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
site_name: Flask 入门教程
site_description: 使用 Python 和 Flask 开发你的第一个 Web 程序
site_url: https://tutorial.helloflask.com
docs_dir: chapters
theme:
name: material
custom_dir: chapters/_templates
logo: _assets/favicon.png
favicon: _assets/favicon.png
features:
- content.code.copy
palette:
primary: black
icon:
repo: fontawesome/brands/github
language: zh
repo_url: https://github.com/helloflask/flask-tutorial
repo_name: helloflask/flask-tutorial
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/helloflask/flask-tutorial
- icon: fontawesome/brands/twitter
link: https://twitter.com/greylihui
copyright: Copyright © 2025 <a href="https://greyli.com" target="_blank" rel="noopener">Grey Li</a>
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.tabbed
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.progressbar
- attr_list
- toc:
permalink: True
nav:
- 目录: README.md
- 前言: preface.md
- 为本书付费: pay.md
- 第 1 章:准备工作: 1-preparation.md
- 第 2 章:Hello, Flask!: 2-hello.md
- 第 3 章:模板: 3-template.md
- 第 4 章:静态文件: 4-static.md
- 第 5 章:数据库: 5-database.md
- 第 6 章:模板优化: 6-advanced-template.md
- 第 7 章:表单: 7-form.md
- 第 8 章:用户认证: 8-auth.md
- 第 9 章:组织你的代码: 9-organize.md
- 第 10 章:测试: 10-test.md
- 第 11 章:部署上线: 11-deployment.md
- 第 12 章:小挑战: 12-challenge.md
- 后记: postscript.md
- 教程主页↗: https://helloflask.com/book/3
- 书稿源码↗: https://github.com/helloflask/flask-tutorial
- 示例程序源码↗: https://github.com/helloflask/watchlist
- 代码厨房社区↗: https://codekitchen.community
plugins:
- search
extra_css:
- _assets/extra.css