Nintex templates download as I was investigating some issue with their search bar. In the header file, if you have multiple '<input' (like we would normally do for language switcher options) it negates the button being clickable at all.
This commit is contained in:
@ -0,0 +1,64 @@
|
||||
{% assign question_en = question_en %}
|
||||
{% assign question_es = question_es %}
|
||||
{% assign question_fr = question_fr %}
|
||||
{% assign question_de = question_de %}
|
||||
{% assign question_en_GB = question_en_GB %}
|
||||
{% assign question_nl = question_nl %}
|
||||
{% assign question_pt_BR = question_pt_BR %}
|
||||
|
||||
{% assign answer_en = answer_en %}
|
||||
{% assign answer_es = answer_es %}
|
||||
{% assign answer_fr = answer_fr %}
|
||||
{% assign answer_de = answer_de %}
|
||||
{% assign answer_en_GB = answer_en_GB %}
|
||||
{% assign answer_nl = answer_nl %}
|
||||
{% assign answer_pt_BR = answer_pt_BR %}
|
||||
|
||||
|
||||
<div class="faq-card" onclick="this.classList.toggle('active')">
|
||||
<div class="faq-question">
|
||||
<div class="faq-icon">
|
||||
<svg
|
||||
width="24"
|
||||
height="24"
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg">
|
||||
<path
|
||||
d="M12 4L12 20"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round" />
|
||||
<path
|
||||
d="M4 12L20 12"
|
||||
stroke="currentColor"
|
||||
stroke-width="2"
|
||||
stroke-linecap="round" />
|
||||
</svg>
|
||||
</div>
|
||||
<div class="faq-question-text">
|
||||
<p>
|
||||
<span class="faq-label">Q:</span>
|
||||
<span class="lang-en-US">{{ question_en }}</span>
|
||||
<span class="lang-es">{{ question_es }}</span>
|
||||
<span class="lang-fr">{{ question_fr }}</span>
|
||||
<span class="lang-de">{{ question_de }}</span>
|
||||
<span class="lang-en-GB">{{ question_en_GB }}</span>
|
||||
<span class="lang-nl">{{ question_nl }}</span>
|
||||
<span class="lang-pt-BR">{{ question_pt_BR }}</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="faq-answer">
|
||||
<p>
|
||||
<span class="faq-label">A:</span>
|
||||
<span class="lang-en-US">{{ answer_en }}</span>
|
||||
<span class="lang-es">{{ answer_es }}</span>
|
||||
<span class="lang-fr">{{ answer_fr }}</span>
|
||||
<span class="lang-de">{{ answer_de }}</span>
|
||||
<span class="lang-en-GB">{{ answer_en_GB }}</span>
|
||||
<span class="lang-nl">{{ answer_nl }}</span>
|
||||
<span class="lang-pt-BR">{{ answer_pt_BR }}</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user