-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
54 lines (46 loc) · 1.04 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
# Project Information
site_name: Runcobo
site_url: https://runcobo.github.io/docs
site_author: Runcobo Community
site_description: Runcobo documentation (web framework for Crystal).
# Repository
repo_name: Runcobo Github
repo_url: https://github.com/runcobo/runcobo
# Copyright
copyright: "Copyright © Runcobo Community"
# Configuration
theme:
name: material
language: en
palette:
primary: cyan
logo: assets/logo.png
favicon: assets/favicon.ico
# Customization
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/runcobo/runcobo
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- footnotes
- meta
- toc:
permalink: true
nav:
- Introduction: "index.md"
- Installation: "installation.md"
- Getting Started: "getting_started.md"
- Route: "route.md"
- Action:
- Overview: "action.md"
- Params: "params.md"
- Render: "render.md"
- View:
- Overview: "view.md"
- JSON: "json.md"
- HTML: "html.md"
- Model:
- Overview: "model.md"