| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <% content_for :head do %>
- <%= stylesheet_link_tag "help", media: "all", "data-turbolinks-track": "reload" %>
- <%= javascript_include_tag "help", "data-turbolinks-track" => true %>
- <% end %>
- <section id='about' class='help'>
- <h3 class='pointer' onClick='toggleHelp("about");'>
- <%= image_tag("control/slid_r.svg", class: "slider", alt: t("help.expand")) %>
- <%= t("help.about_title") %>
- </h3>
- <p>
- <%= t("help.about_text").html_safe %>
- </p>
- </section>
- <section id='privacy' class='help'>
- <h3 class='pointer' onClick='toggleHelp("privacy");'>
- <%= image_tag("control/slid_r.svg", class: "slider", alt: t("help.expand")) %>
- <%= t("help.privacy_title") %>
- </h3>
- <p>
- <%= t("help.privacy_text").html_safe %>
- </p>
- </section>
- <section id='cookies' class='help'>
- <h3 class='pointer' onClick='toggleHelp("cookies");'>
- <%= image_tag("control/slid_r.svg", class: "slider", alt: t("help.expand")) %>
- <%= t("help.cookies_title") %>
- </h3>
- <p>
- <%= t("help.cookies_text").html_safe %>
- </p>
- </section>
- <section id='license' class='help'>
- <h3 class='pointer' onClick='toggleHelp("license");'>
- <%= image_tag("control/slid_r.svg", class: "slider", alt: t("help.expand")) %>
- <%= t("help.license_title") %>
- </h3>
- <p>
- <%= t("help.license_text").html_safe %>
- </p>
- </section>
|