Updated ACP search template
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / cms.tpl
CommitLineData
3295fb92
AE
1{include file='documentHeader'}
2
3<head>
4 <title>{if !$page->isLandingPage}{$content[title]} - {/if}{PAGE_TITLE|language}</title>
5
6 {include file='headInclude'}
7
8 <link rel="canonical" href="{$canonicalURL}">
9</head>
10
11<body id="tpl{$templateName|ucfirst}" data-template="{$templateName}" data-application="{$templateNameApplication}">
12
13{include file='header'}
14
15{if $page->isLandingPage}
487db634
MW
16 <header class="contentHeader">
17 <h1 class="contentTitle">{PAGE_TITLE|language}</h1>
3295fb92
AE
18 {hascontent}<p>{content}{PAGE_DESCRIPTION|language}{/content}</p>{/hascontent}
19 </header>
20{else}
487db634
MW
21 {if $content[title]}
22 <header class="contentHeader">
23 <h1 class="contentTitle">{$content[title]}</h1>
24 </header>
25 {/if}
3295fb92
AE
26{/if}
27
28{include file='userNotice'}
29
487db634
MW
30{hascontent}
31 <div class="contentNavigation">
3295fb92
AE
32 <nav>
33 <ul>
34 {content}
35 {event name='contentNavigationButtonsTop'}
36 {/content}
37 </ul>
38 </nav>
487db634
MW
39 </div>
40{/hascontent}
3295fb92 41
487db634
MW
42{if $content[content]}
43 <section class="section cmsContent htmlContent">
44 {@$content[content]}
45 </section>
46{/if}
3295fb92 47
487db634
MW
48{hascontent}
49 <div class="contentNavigation">
3295fb92
AE
50 <nav>
51 <ul>
52 {content}
53 {event name='contentNavigationButtonsBottom'}
54 {/content}
55 </ul>
56 </nav>
487db634
MW
57 </div>
58{/hascontent}
3295fb92
AE
59
60{include file='footer'}
61
62</body>
63</html>