* Rename _faq_new.pug to _faq.pug Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Add 2026 plans page FAQ templates Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Wire up quotes and FAQ section in plans_2026.pug Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Update styles, quote component, and translations for 2026 plans page Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix missing accordion icon wrapper in last FAQ item Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fixup: rename `.card-pattern-sides` back to `.card-pattern` * Create SASS placeholder and mixin Suggested by Tim * Fixup quote style * Update spacings to match Figma --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> GitOrigin-RevId: 2f4e284038d79157d2b029a967918077bb206032
54 lines
1.6 KiB
Plaintext
54 lines
1.6 KiB
Plaintext
include ./_plans_faq_tabs_2026
|
|
include ../../_mixins/eyebrow
|
|
include ../../_mixins/material_symbol
|
|
|
|
- var managingYourSubscription = 'managingYourSubscription'
|
|
- var overleafIndividualPlans = 'overleafIndividualPlans'
|
|
- var overleafGroupPlans = 'overleafGroupPlans'
|
|
.container.plans-faq
|
|
.row
|
|
.col-md-12.faq-heading-container
|
|
h2
|
|
+eyebrow(translate('frequently_asked_questions'))
|
|
| #{translate("lets_answer_your_questions")}
|
|
|
|
.row
|
|
.col-xs-12
|
|
.ol-tabs.plans-faq-tabs
|
|
.nav-tabs-container
|
|
ul.nav.nav-tabs(role='tablist')
|
|
li(role='presentation')
|
|
a.active(
|
|
role='tab'
|
|
data-bs-toggle='tab'
|
|
href='#' + managingYourSubscription
|
|
aria-controls=managingYourSubscription
|
|
)
|
|
| #{translate('managing_your_subscription')}
|
|
li(role='presentation')
|
|
a(
|
|
role='tab'
|
|
data-toggle='tab'
|
|
data-bs-toggle='tab'
|
|
href='#' + overleafIndividualPlans
|
|
aria-controls=overleafIndividualPlans
|
|
)
|
|
| #{translate('overleaf_individual_plans')}
|
|
li(role='presentation')
|
|
a(
|
|
role='tab'
|
|
data-toggle='tab'
|
|
data-bs-toggle='tab'
|
|
href='#' + overleafGroupPlans
|
|
aria-controls=overleafGroupPlans
|
|
)
|
|
| #{translate('overleaf_multi_license_plans')}
|
|
|
|
.tab-content
|
|
.tab-pane.active(role='tabpanel' id=managingYourSubscription)
|
|
+managingYourSubscription
|
|
.tab-pane(role='tabpanel' id=overleafIndividualPlans)
|
|
+overleafIndividualPlans
|
|
.tab-pane(role='tabpanel' id=overleafGroupPlans)
|
|
+overleafGroupPlans
|