Added proper support for font size and color
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / userProfileAbout.tpl
1 {hascontent}
2 {content}
3 {foreach from=$options item=category}
4 {foreach from=$category[categories] item=optionCategory}
5 <section class="section">
6 <h2 class="sectionTitle">{lang}wcf.user.option.category.{@$optionCategory[object]->categoryName}{/lang}</h2>
7
8 {foreach from=$optionCategory[options] item=userOption}
9 <dl>
10 <dt>{lang}wcf.user.option.{@$userOption[object]->optionName}{/lang}</dt>
11 <dd>{@$userOption[object]->optionValue}</dd>
12 </dl>
13 {/foreach}
14 </section>
15 {/foreach}
16 {/foreach}
17 {/content}
18 {hascontentelse}
19 <div class="section">
20 <p class="info">{lang}wcf.user.profile.content.about.noPublicData{/lang}</p>
21 </div>
22 {/hascontent}