Added canonical URLs
[GitHub/WoltLab/com.woltlab.wcf.legalNotice.git] / templates / legalNotice.tpl
CommitLineData
4807a343
MW
1{include file='documentHeader'}
2
3<head>
4 <title>{lang}wcf.legalNotice.title{/lang} - {PAGE_TITLE|language}</title>
5
6 {include file='headInclude'}
e08966d5
MW
7
8 <link rel="canonical" href="{link controller='LegalNotice'}{/link}" />
4807a343
MW
9</head>
10
11<body id="tpl{$templateName|ucfirst}">
12
13{include file='header'}
14
15<header class="boxHeadline">
16 <hgroup>
17 <h1>{lang}wcf.legalNotice.title{/lang}</h1>
18 <h2>{lang}wcf.legalNotice.description{/lang}</h2>
19 </hgroup>
20</header>
21
22{include file='userNotice'}
23
24<div class="container containerPadding marginTop">
25 <fieldset>
26 <legend>{lang}wcf.legalNotice.general{/lang}</legend>
27
28 <dl>
29 {if LEGAL_NOTICE_ADDRESS}
30 <dt>{lang}wcf.legalNotice.address{/lang}</dt>
31 <dd>{@LEGAL_NOTICE_ADDRESS|language|htmlspecialchars|nl2br}</dd>
32 {/if}
33
34 {if $encodedEmailAddress}
35 <dt>{lang}wcf.legalNotice.emailAddress{/lang}</dt>
36 <dd><a href="mailto:{@$encodedEmailAddress}">{@$encodedEmailAddress}</a></dd>
37 {/if}
38
39 {if LEGAL_NOTICE_PHONE}
40 <dt>{lang}wcf.legalNotice.phone{/lang}</dt>
41 <dd>{LEGAL_NOTICE_PHONE}</dd>
42 {/if}
43
44 {if LEGAL_NOTICE_FAX}
45 <dt>{lang}wcf.legalNotice.fax{/lang}</dt>
46 <dd>{LEGAL_NOTICE_FAX}</dd>
47 {/if}
48
49 {if LEGAL_NOTICE_REPRESENTATIVE}
50 <dt>{lang}wcf.legalNotice.representative{/lang}</dt>
51 <dd>{LEGAL_NOTICE_REPRESENTATIVE}</dd>
52 {/if}
53
54 {if LEGAL_NOTICE_REGISTER}
55 <dt>{lang}wcf.legalNotice.register{/lang}</dt>
56 <dd>{LEGAL_NOTICE_REGISTER}</dd>
57 {/if}
58
59 {if LEGAL_NOTICE_VAT_ID}
60 <dt>{lang}wcf.legalNotice.vatID{/lang}</dt>
61 <dd>{LEGAL_NOTICE_VAT_ID}</dd>
62 {/if}
63 </dl>
80524b1d
MW
64
65 {event name='generalFields'}
4807a343
MW
66 </fieldset>
67
68 {if LEGAL_NOTICE_ADDITIONAL_TEXT}
69 <fieldset>
70 <legend>{lang}wcf.legalNotice.additionalText{/lang}</legend>
71
72 <div class="htmlContent">
73 {if LEGAL_NOTICE_ADDITIONAL_TEXT_ENABLE_HTML}{@LEGAL_NOTICE_ADDITIONAL_TEXT|language}{else}{@LEGAL_NOTICE_ADDITIONAL_TEXT|language|htmlspecialchars|nl2br}{/if}
74 </div>
80524b1d
MW
75
76 {event name='additionalTextFields'}
4807a343
MW
77 </fieldset>
78 {/if}
80524b1d
MW
79
80 {event name='fieldsets'}
4807a343
MW
81</div>
82
83{include file='footer'}
84
85</body>
86</html>