diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-12 17:34:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-12 17:34:00 +0100 |
commit | 65fffeac3f960f9c74d693525a73ac14b201bf2b (patch) | |
tree | 41d5eaa2a446e161dc26d39960cde870135ee06f /app/helpers | |
parent | 6a8dc59eb8187b49aa3cbf3e4bf80565d8aa15d3 (diff) |
Redesign landing page (#10232)
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/home_helper.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/helpers/home_helper.rb b/app/helpers/home_helper.rb index 9b3f1380b..1f648649f 100644 --- a/app/helpers/home_helper.rb +++ b/app/helpers/home_helper.rb @@ -56,4 +56,12 @@ module HomeHelper 'emojify' end end + + def optional_link_to(condition, path, options = {}, &block) + if condition + link_to(path, options, &block) + else + content_tag(:div, &block) + end + end end |