Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

21 行
488 B

  1. {% extends 'partials/base.html.twig' %}
  2. {% if form is null %}
  3. {% set form = grav.session.getFlashObject('form') %}
  4. {% endif %}
  5. {% block content %}
  6. {{ content|raw }}
  7. {% if form %}
  8. {% include 'partials/form-messages.html.twig' %}
  9. <p>{{ 'PLUGIN_FORM.DATA_SUMMARY'|t }}</p>
  10. {% include "forms/data.html.twig" %}
  11. {% else %}
  12. <div class="notices warning yellow"><p>{{ 'PLUGIN_FORM.NO_FORM_DATA'|t }}</p></div>
  13. {% endif %}
  14. {% endblock %}