Fixed box css class name being incorrectly handled
[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}
16 <header class="boxHeadline">
17 <h1>{PAGE_TITLE|language}</h1>
18 {hascontent}<p>{content}{PAGE_DESCRIPTION|language}{/content}</p>{/hascontent}
19 </header>
20{else}
21 <header class="boxHeadline">
22 <h1>{$content[title]}</h1>
23 </header>
24{/if}
25
26{include file='userNotice'}
27
28<div class="contentNavigation">
29 {hascontent}
30 <nav>
31 <ul>
32 {content}
33 {event name='contentNavigationButtonsTop'}
34 {/content}
35 </ul>
36 </nav>
37 {/hascontent}
38</div>
39
40<section class="cmsContent htmlContent">
41 {@$content[content]}
42</section>
43
44<div class="contentNavigation">
45 {hascontent}
46 <nav>
47 <ul>
48 {content}
49 {event name='contentNavigationButtonsBottom'}
50 {/content}
51 </ul>
52 </nav>
53 {/hascontent}
54</div>
55
56{include file='footer'}
57
58</body>
59</html>