example.config.yml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. ---
  2. # Homepage configuration
  3. # See https://fontawesome.com/icons for icons options
  4. title: "Demo dashboard"
  5. subtitle: "Homer"
  6. logo: "logo.png"
  7. # icon: "fas fa-skull-crossbones" # Optional icon
  8. header: true
  9. footer: false
  10. # Optional theme customization
  11. theme: default
  12. colors:
  13. light:
  14. highlight-primary: "#3367d6"
  15. highlight-secondary: "#4285f4"
  16. highlight-hover: "#5a95f5"
  17. background: "#f5f5f5"
  18. card-background: "#ffffff"
  19. text: "#363636"
  20. text-header: "#ffffff"
  21. text-title: "#303030"
  22. text-subtitle: "#424242"
  23. card-shadow: rgba(0, 0, 0, 0.1)
  24. link-hover: "#363636"
  25. dark:
  26. highlight-primary: "#3367d6"
  27. highlight-secondary: "#4285f4"
  28. highlight-hover: "#5a95f5"
  29. background: "#131313"
  30. card-background: "#2b2b2b"
  31. text: "#eaeaea"
  32. text-header: "#ffffff"
  33. text-title: "#fafafa"
  34. text-subtitle: "#f5f5f5"
  35. card-shadow: rgba(0, 0, 0, 0.4)
  36. link-hover: "#ffdd57"
  37. # Optional message
  38. message:
  39. # url: https://b4bz.io
  40. style: "is-dark" # See https://bulma.io/documentation/components/message/#colors for styling options.
  41. title: "Demo !"
  42. icon: "fa fa-grin"
  43. content: "This is a dummy homepage demo. <br /> Find more information on <a href='https://github.com/bastienwirtz/homer'>github.com/bastienwirtz/homer</a>"
  44. # Optional navbar
  45. # links: [] # Allows for navbar (dark mode, layout, and search) without any links
  46. links:
  47. - name: "Contribute"
  48. icon: "fab fa-github"
  49. url: "https://github.com/bastienwirtz/homer"
  50. target: "_blank" # optional html a tag target attribute
  51. - name: "Wiki"
  52. icon: "fas fa-book"
  53. url: "https://www.wikipedia.org/"
  54. # this will link to a second homer page that will load config from additionnal-page.yml and keep default config values as in config.yml file
  55. # see url field and assets/additionnal-page.yml.dist used in this example:
  56. - name: "another page!"
  57. icon: "fas fa-file-alt"
  58. url: "#additionnal-page"
  59. # Services
  60. # First level array represent a group.
  61. # Leave only a "items" key if not using group (group name, icon & tagstyle are optional, section separation will not be displayed).
  62. services:
  63. - name: "Applications"
  64. icon: "fas fa-cloud"
  65. items:
  66. - name: "Awesome app"
  67. logo: "assets/tools/sample.png"
  68. subtitle: "Bookmark example"
  69. tag: "app"
  70. url: "https://www.reddit.com/r/selfhosted/"
  71. target: "_blank" # optional html a tag target attribute
  72. - name: "Another one"
  73. logo: "assets/tools/sample2.png"
  74. subtitle: "Another application"
  75. tag: "app"
  76. url: "#"