Removed dashboard box system
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / recentActivityList.tpl
1 {include file='documentHeader'}
2
3 <head>
4 <title>{lang}wcf.user.recentActivity{/lang} - {PAGE_TITLE|language}</title>
5
6 {include file='headInclude'}
7
8 <link rel="canonical" href="{link controller='RecentActivityList'}{/link}" />
9
10 <script data-relocate="true">
11 //<![CDATA[
12 $(function() {
13 WCF.Language.addObject({
14 'wcf.user.recentActivity.more': '{lang}wcf.user.recentActivity.more{/lang}',
15 'wcf.user.recentActivity.noMoreEntries': '{lang}wcf.user.recentActivity.noMoreEntries{/lang}'
16 });
17
18 new WCF.User.RecentActivityLoader(null);
19 });
20 //]]>
21 </script>
22 </head>
23
24 <body id="tpl{$templateName|ucfirst}" data-template="{$templateName}" data-application="{$templateNameApplication}">
25
26 {include file='header'}
27
28 <header class="contentHeader">
29 <div class="contentHeaderTitle">
30 <h1 class="contentTitle">{lang}wcf.user.recentActivity{/lang}</h1>
31 </div>
32
33 {hascontent}
34 <nav class="contentHeaderNavigation">
35 <ul>
36 {content}{event name='contentHeaderNavigation'}{/content}
37 </ul>
38 </nav>
39 {/hascontent}
40 </header>
41
42 {include file='userNotice'}
43
44 {if $eventList|count}
45 <div class="section sectionContainerList">
46 <ul id="recentActivities" class="containerList recentActivityList" data-last-event-time="{@$lastEventTime}">
47 {include file='recentActivityListItem'}
48 </ul>
49 </div>
50
51 <footer class="contentFooter">
52 {hascontent}
53 <nav class="contentFooterNavigation">
54 <ul>
55 {content}{event name='contentFooterNavigation'}{/content}
56 </ul>
57 </nav>
58 {/hascontent}
59 </footer>
60 {else}
61 <p class="info">{lang}wcf.user.recentActivity.noEntries{/lang}</p>
62 {/if}
63
64 {include file='footer'}
65
66 </body>
67 </html>