view.tpl 387 B

12345678910111213141516171819202122232425
  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. {% if work.contains_file and work.show_content %}
  15. <h3>
  16. {{ 'Content' | get_lang }}
  17. </h3>
  18. <p>
  19. {{ work.show_content }}
  20. </p>
  21. {% endif %}
  22. {% include template ~ '/work/comments.tpl' %}