-
-
Notifications
You must be signed in to change notification settings - Fork 147
/
mkdocs.yml
61 lines (61 loc) · 1.84 KB
/
mkdocs.yml
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
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
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 © 2018 <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
- 封面: cover.md
- 前言: preface.md
- 第 1 章:准备工作: ready.md
- 第 2 章:Hello, Flask!: hello.md
- 第 3 章:模板: template.md
- 第 4 章:静态文件: static.md
- 第 5 章:数据库: database.md
- 第 6 章:模板优化: template2.md
- 第 7 章:表单: form.md
- 第 8 章:用户认证: login.md
- 第 9 章:测试: test.md
- 第 10 章:组织你的代码: organize.md
- 第 11 章:部署上线: deploy.md
- 小挑战: 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