templates/help.html.twig line 1

  1. <div class="offcanvas offcanvas-end help-section" tabindex="-1" id="offcanvasHelp" aria-labelledby="offcanvasHelpLabel">
  2.     <div class="offcanvas-header z-index-10">
  3.         <h5 class="offcanvas-title" id="offcanvasHelpLabel">
  4.             Help
  5.         </h5>
  6.         <button type="button" class="btn-close text-reset" data-bs-dismiss="offcanvas" aria-label="Close"></button>
  7.     </div>
  8.     <div class="offcanvas-body">
  9.         <p>If you have feedback, or think you have found a bug, you can click on the button below to open up a dialog where you can contact the developers directly.</p>
  10.         <p>This dialog also allows you to take a "screenshot", if applicable, to help explain your issue.</p>
  11.         <a class="btn btn-primary d-block" href="#" data-ybug="open" (click)="offcanvas.close('Close click')">Give feedback</a>
  12.         <hr>
  13.         <h5 class="mb-4 pb-3">
  14.             Questions and Answers
  15.         </h5>
  16.         {% include 'qa.html.twig' %}
  17.     </div>
  18. </div>