A FAQ module for silverstripe that implements the backend on any pagetype via an extension but does not dictate the frontend!
composer require webfox/silverstripe-faq
(can be applied to multiple page types)
Page:
extensions:
- FrequentlyAskedQuestionsExtension
<% if $Faqs.exists %>
<% loop $Faqs %>
<h2>Q. {$Title}</h2>
<strong>A.</strong> {$Answer}
<% end_loop %>
<% end_if %>