Overhauled page title management
[GitHub/WoltLab/com.woltlab.wcf.legalNotice.git] / templates / legalNotice.tpl
CommitLineData
366b5252 1{capture assign='contentDescription'}{lang}wcf.legalNotice.description{/lang}{/capture}
4807a343 2
366b5252
MW
3{capture assign='headContent'}
4 <link rel="canonical" href="{link controller='LegalNotice'}{/link}" />
5{/capture}
4807a343 6
366b5252 7{include file='header'}
4807a343 8
366b5252
MW
9<section class="section">
10 <h2 class="sectionTitle">{lang}wcf.legalNotice.general{/lang}</h2>
11
12 <dl>
13 {if LEGAL_NOTICE_ADDRESS}
14 <dt>{lang}wcf.legalNotice.address{/lang}</dt>
15 <dd>{@LEGAL_NOTICE_ADDRESS|language|newlineToBreak}</dd>
16 {/if}
4c81f7fc 17
366b5252
MW
18 {if $encodedEmailAddress}
19 <dt>{lang}wcf.legalNotice.emailAddress{/lang}</dt>
20 <dd><a href="mailto:{@$encodedEmailAddress}">{@$encodedEmailAddress}</a></dd>
21 {/if}
80524b1d 22
366b5252
MW
23 {if LEGAL_NOTICE_PHONE}
24 <dt>{lang}wcf.legalNotice.phone{/lang}</dt>
25 <dd>{LEGAL_NOTICE_PHONE}</dd>
26 {/if}
27
28 {if LEGAL_NOTICE_FAX}
29 <dt>{lang}wcf.legalNotice.fax{/lang}</dt>
30 <dd>{LEGAL_NOTICE_FAX}</dd>
31 {/if}
32
33 {if LEGAL_NOTICE_REPRESENTATIVE}
34 <dt>{lang}wcf.legalNotice.representative{/lang}</dt>
35 <dd>{LEGAL_NOTICE_REPRESENTATIVE}</dd>
36 {/if}
37
38 {if LEGAL_NOTICE_REGISTER}
39 <dt>{lang}wcf.legalNotice.register{/lang}</dt>
40 <dd>{LEGAL_NOTICE_REGISTER}</dd>
41 {/if}
42
43 {if LEGAL_NOTICE_VAT_ID}
44 <dt>{lang}wcf.legalNotice.vatID{/lang}</dt>
45 <dd>{LEGAL_NOTICE_VAT_ID}</dd>
46 {/if}
47 </dl>
80524b1d 48
366b5252
MW
49 {event name='generalFields'}
50</section>
4807a343 51
366b5252
MW
52{if LEGAL_NOTICE_ADDITIONAL_TEXT}
53 <section class="section">
54 <h2 class="sectionTitle">{lang}wcf.legalNotice.additionalText{/lang}</h2>
55
56 <div class="htmlContent">
57 {if LEGAL_NOTICE_ADDITIONAL_TEXT_ENABLE_HTML}{@LEGAL_NOTICE_ADDITIONAL_TEXT|language}{else}{@LEGAL_NOTICE_ADDITIONAL_TEXT|language|newlineToBreak}{/if}
58 </div>
59
60 {event name='additionalTextFields'}
61 </section>
62{/if}
4807a343 63
366b5252
MW
64{event name='sections'}
65
66{include file='footer'}