view.html.twig 405 B

123456789101112131415161718192021222324252627
  1. <div class="page-header">
  2. <h2>
  3. {{ work.title }}
  4. </h2>
  5. </div>
  6. {% if work.description %}
  7. <h3>
  8. {{ 'Description' | get_lang }}
  9. </h3>
  10. <p>
  11. {{ work.description }}
  12. </p>
  13. {% endif %}
  14. {{ form }}
  15. {% if work.contains_file and work.show_content %}
  16. <h3>
  17. {{ 'Content' | get_lang }}
  18. </h3>
  19. <p>
  20. {{ work.show_content }}
  21. </p>
  22. {% endif %}
  23. {% include template ~ '/work/comments.html.twig' %}