about.html 392 B

1234567891011121314151617
  1. {% extends 'base/base.html' %}
  2. {% block title -%}{{ _("About") }} · {{ super() }}{%- endblock title %}
  3. {% block content %}
  4. {{ breadcrumb(active=_('About')) }}
  5. {% cache 300 %}
  6. <div class="panel panel-primary">
  7. <div class="panel-heading">
  8. {{ _('About')}}
  9. </div>
  10. <div class="panel-body">
  11. about
  12. </div>
  13. </div>
  14. {% endcache %}
  15. {% endblock %}