12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- # ********************************************************************************
- # Copyright © 2018 jianglin
- # File Name: default.py
- # Author: jianglin
- # Email: xiyang0807@gmail.com
- # Created: 2018-07-26 10:00:54 (CST)
- # Last Update: Wednesday 2019-05-08 16:24:22 (CST)
- # By:
- # Description:
- # ********************************************************************************
- SITE = {'title': '紅楓林', 'subtitle': '爱生活,更爱自由', 'avatar': ''}
- SUBDOMAIN = {"forums": True, "docs": True}
- LANGUAGES = {'en': 'English', 'zh': 'Chinese'}
- INDEX = [{
- "name": "Forums",
- "url": "forums.forums",
- "icon": "fa-comments",
- "color": "#F86334"
- }, {
- "name": "Wiki",
- "url": "docs.list",
- "icon": "fa-book",
- "color": "#eeccaa"
- }, {
- "name": "Blog",
- "url": "docs.list",
- "icon": "fa-tasks",
- "color": "#337ab7"
- }, {
- "name": "Good",
- "url": "topic.good",
- "icon": "fa-globe",
- "color": "#017e66"
- }]
- HEADER = [{
- "name": "Forums",
- "url": "forums.forums"
- }, {
- "name": "Wiki",
- "url": "docs.list"
- }, {
- "name": "Blog",
- "url": "forums.forums"
- }, {
- "name": "TagList",
- "url": "tag.list"
- }, {
- "name": "Good",
- "url": "topic.good"
- }]
|