default.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. # ********************************************************************************
  4. # Copyright © 2018 jianglin
  5. # File Name: default.py
  6. # Author: jianglin
  7. # Email: xiyang0807@gmail.com
  8. # Created: 2018-07-26 10:00:54 (CST)
  9. # Last Update: Wednesday 2019-05-08 16:24:22 (CST)
  10. # By:
  11. # Description:
  12. # ********************************************************************************
  13. SITE = {'title': '紅楓林', 'subtitle': '爱生活,更爱自由', 'avatar': ''}
  14. SUBDOMAIN = {"forums": True, "docs": True}
  15. LANGUAGES = {'en': 'English', 'zh': 'Chinese'}
  16. INDEX = [{
  17. "name": "Forums",
  18. "url": "forums.forums",
  19. "icon": "fa-comments",
  20. "color": "#F86334"
  21. }, {
  22. "name": "Wiki",
  23. "url": "docs.list",
  24. "icon": "fa-book",
  25. "color": "#eeccaa"
  26. }, {
  27. "name": "Blog",
  28. "url": "docs.list",
  29. "icon": "fa-tasks",
  30. "color": "#337ab7"
  31. }, {
  32. "name": "Good",
  33. "url": "topic.good",
  34. "icon": "fa-globe",
  35. "color": "#017e66"
  36. }]
  37. HEADER = [{
  38. "name": "Forums",
  39. "url": "forums.forums"
  40. }, {
  41. "name": "Wiki",
  42. "url": "docs.list"
  43. }, {
  44. "name": "Blog",
  45. "url": "forums.forums"
  46. }, {
  47. "name": "TagList",
  48. "url": "tag.list"
  49. }, {
  50. "name": "Good",
  51. "url": "topic.good"
  52. }]