Commit 79c127e6 authored by Kirill Smelkov's avatar Kirill Smelkov

NXD Show ICP on front page & on footer of every other pages

TODO detect whether request comes from China and only then show ICP (?).
parent e7e0fd88
......@@ -53,4 +53,13 @@ module PageLayoutHelper
css_class
end
def should_render_icp?
extra_config.has_key?('ICP')
# TODO render ICP only for requests from China
end
def render_icp
link_to extra_config.ICP, "http://www.miibeian.gov.cn/"
end
end
......@@ -34,3 +34,6 @@
= link_to "About GitLab", "https://about.gitlab.com/"
|
= link_to "About Nexedi", "http://nexedi.com/"
- if should_render_icp?
|
= render_icp
......@@ -34,3 +34,5 @@
= link_to "Help", help_path
= link_to "About GitLab", "https://about.gitlab.com/"
= link_to "About Nexedi", "http://nexedi.com/"
- if should_render_icp?
= render_icp
......@@ -405,6 +405,9 @@ production: &base
# piwik_url: '_your_piwik_url'
# piwik_site_id: '_your_piwik_site_id'
## Site ICP number
# ICP: '_your_site_icp_'
rack_attack:
git_basic_auth:
# Rack Attack IP banning enabled
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment