Merge branch '6.0'
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / team.tpl
CommitLineData
95961bdf 1{include file='header'}
320f4a6d 2
320f4a6d 3{foreach from=$objects->getTeams() item=team}
929f7e47
MW
4 <section class="section sectionContainerList">
5 <header class="sectionHeader">
a53c38ea
MS
6 <h2 class="sectionTitle" id="group{@$team->groupID}">{$team->getTitle()} <span class="badge">{#$team->getMembers()|count}</span></h2>
7 <p class="sectionDescription">{$team->getDescription()}</p>
929f7e47
MW
8 </header>
9
40876213 10 <ol class="containerList userCardList">
320f4a6d 11 {foreach from=$team->getMembers() item=user}
40876213 12 {include file='userCard'}
320f4a6d
MW
13 {/foreach}
14 </ol>
b8eab696 15 </section>
320f4a6d
MW
16{/foreach}
17
e7b063d6 18<footer class="contentFooter">
320f4a6d 19 {hascontent}
e7b063d6 20 <nav class="contentFooterNavigation">
320f4a6d 21 <ul>
e7b063d6 22 {content}{event name='contentFooterNavigation'}{/content}
320f4a6d
MW
23 </ul>
24 </nav>
25 {/hascontent}
e7b063d6 26</footer>
320f4a6d 27
3e93caf9 28{include file='footer'}