add support for custom footer links
This commit is contained in:
parent
0335c28a69
commit
61c4033dfa
|
@ -10,3 +10,7 @@
|
|||
= link_to t(".terms"), terms_path
|
||||
·
|
||||
= link_to t(".privacy"), privacy_policy_path
|
||||
- if APP_CONFIG["links"].present?
|
||||
- APP_CONFIG["links"].each do |link|
|
||||
·
|
||||
= link_to link["text"], link["url"]
|
||||
|
|
|
@ -35,6 +35,11 @@ about: |
|
|||
|
||||
Use this space to describe your Retrospring instance!
|
||||
|
||||
# Custom links in the footer
|
||||
# links:
|
||||
# - text: "Patreon"
|
||||
# url: "https://patreon.com/retrospring"
|
||||
|
||||
# How many items (questions, answers, ...) do you want to show per page?
|
||||
items_per_page: 10
|
||||
|
||||
|
|
Loading…
Reference in New Issue