This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/templates/yuuno/forum/viewforum.twig

18 lines
556 B
Twig
Raw Normal View History

2016-01-04 20:14:09 +00:00
{% extends 'global/master.twig' %}
{% set title %}Forums / {{ forum.name }}{% endset %}
2016-03-10 18:54:36 +00:00
{% set forumBackLink %}{{ route('forums.index') }}{% endset %}
2016-03-25 01:31:57 +00:00
{% set forumNewLink %}{{ route('forums.new', forum.id) }}{% endset %}
2016-03-10 18:54:36 +00:00
{% set forumMarkRead %}{{ route('forums.mark', forum.id) }}?s={{ php.sessionid }}{% endset %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
2015-06-27 19:29:37 +00:00
<div class="content homepage forum viewforum">
<div class="content-column">
2016-01-04 20:14:09 +00:00
{% include 'forum/forum.twig' %}
2015-06-27 19:29:37 +00:00
</div>
</div>
{% endblock %}