Blocca la seconda diretta sullo stesso utente, registra gli abusi in admin e presenta la copertina come grafica caricata dalla società, con demo Team MLTV. Co-authored-by: Cursor <cursoragent@cursor.com>
104 lines
2.9 KiB
ERB
104 lines
2.9 KiB
ERB
<% content_for :title, t("pages.faq.meta_title") %>
|
|
<% content_for :meta_description, t("pages.faq.meta_description") %>
|
|
<% content_for :canonical_url, seo_absolute_url(public_faq_path) %>
|
|
|
|
<div class="wrap seo-page">
|
|
<h1 style="margin-top:24px"><%= t("pages.faq.title") %></h1>
|
|
<p class="seo-lead">
|
|
<%= t("pages.faq.lead") %>
|
|
</p>
|
|
|
|
<div class="faq-list">
|
|
<details class="faq-item" open>
|
|
<summary><%= t("pages.faq.q1_question") %></summary>
|
|
<p>
|
|
<%= raw t("pages.faq.q1_answer_html") %>
|
|
</p>
|
|
</details>
|
|
|
|
<details class="faq-item">
|
|
<summary><%= t("pages.faq.q2_question") %></summary>
|
|
<p>
|
|
<%= t("pages.faq.q2_answer") %>
|
|
</p>
|
|
</details>
|
|
|
|
<details class="faq-item">
|
|
<summary><%= t("pages.faq.q3_question") %></summary>
|
|
<p>
|
|
<%= raw t(
|
|
"pages.faq.q3_answer_html",
|
|
volleyball_link: link_to(t("pages.faq.q3_volleyball_link"), public_pallavolo_path)
|
|
) %>
|
|
</p>
|
|
</details>
|
|
|
|
<details class="faq-item">
|
|
<summary><%= t("pages.faq.q4_question") %></summary>
|
|
<p>
|
|
<%= t("pages.faq.q4_answer") %>
|
|
</p>
|
|
</details>
|
|
|
|
<details class="faq-item">
|
|
<summary><%= t("pages.faq.q5_question") %></summary>
|
|
<p>
|
|
<%= raw t(
|
|
"pages.faq.q5_answer_html",
|
|
pricing_link: link_to(t("pages.faq.q5_pricing_link"), public_prezzi_path)
|
|
) %>
|
|
</p>
|
|
</details>
|
|
|
|
<details class="faq-item">
|
|
<summary><%= t("pages.faq.q6_question") %></summary>
|
|
<p>
|
|
<%= t("pages.faq.q6_answer") %>
|
|
</p>
|
|
</details>
|
|
|
|
<details class="faq-item">
|
|
<summary><%= t("pages.faq.q7_question") %></summary>
|
|
<p>
|
|
<%= t("pages.faq.q7_answer") %>
|
|
</p>
|
|
</details>
|
|
|
|
<details class="faq-item">
|
|
<summary><%= t("pages.faq.q8_question") %></summary>
|
|
<p>
|
|
<%= t("pages.faq.q8_answer") %>
|
|
</p>
|
|
</details>
|
|
|
|
<details class="faq-item" id="faq-garanzia" data-mltv-event="guarantee_faq_open">
|
|
<summary><%= t("pages.faq.q9_question") %></summary>
|
|
<p>
|
|
<%= raw t(
|
|
"pages.faq.q9_answer_html",
|
|
terms_link: link_to(t("pages.faq.q9_terms_link"), public_termini_path(anchor: "garanzia-rimborso"))
|
|
) %>
|
|
</p>
|
|
</details>
|
|
|
|
<details class="faq-item">
|
|
<summary><%= t("pages.faq.q10_question") %></summary>
|
|
<p>
|
|
<%= t("pages.faq.q10_answer") %>
|
|
</p>
|
|
</details>
|
|
</div>
|
|
<script>
|
|
(function () {
|
|
if (location.hash !== "#faq-garanzia") return;
|
|
var item = document.getElementById("faq-garanzia");
|
|
if (item) item.open = true;
|
|
})();
|
|
</script>
|
|
|
|
<p style="text-align:center;margin:40px 0">
|
|
<%= link_to t("pages.faq.cta_signup"), public_signup_path, class: "btn btn-primary" %>
|
|
<%= link_to t("pages.faq.cta_live"), public_live_index_path, class: "btn btn-secondary" %>
|
|
</p>
|
|
</div>
|