index.html.erb 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <% content_for :head do %>
  2. <%= stylesheet_link_tag 'help', media: 'all', 'data-turbolinks-track': 'reload' %>
  3. <%= javascript_include_tag 'help', 'data-turbolinks-track' => true %>
  4. <% end %>
  5. <section id='about' class='help'>
  6. <h3 class='pointer' onClick='toggleHelp("about");'>
  7. <%= image_tag("control/slid_r.svg", class: "slider") %>
  8. <%= t("help.about_title") %>
  9. </h3>
  10. <p>
  11. <%= t("help.about_text").html_safe %>
  12. </p>
  13. </section>
  14. <section id='privacy' class='help'>
  15. <h3 class='pointer' onClick='toggleHelp("privacy");'>
  16. <%= image_tag("control/slid_r.svg", class: "slider") %>
  17. <%= t("help.privacy_title") %>
  18. </h3>
  19. <p>
  20. <%= t("help.privacy_text").html_safe %>
  21. </p>
  22. </section>
  23. <section id='cookies' class='help'>
  24. <h3 class='pointer' onClick='toggleHelp("cookies");'>
  25. <%= image_tag("control/slid_r.svg", class: "slider") %>
  26. <%= t("help.cookies_title") %>
  27. </h3>
  28. <p>
  29. <%= t("help.cookies_text").html_safe %>
  30. </p>
  31. </section>
  32. <section id='license' class='help'>
  33. <h3 class='pointer' onClick='toggleHelp("license");'>
  34. <%= image_tag("control/slid_r.svg", class: "slider") %>
  35. <%= t("help.license_title") %>
  36. </h3>
  37. <p>
  38. <%= t("help.license_text").html_safe %>
  39. </p>
  40. </section>