Merge branch '2.0'
[GitHub/WoltLab/WCF.git] / com.woltlab.wcf / templates / quoteBBCodeTag.tpl
1 <blockquote class="quoteBox"{if $quoteLink} cite="{$quoteLink}"{/if}>
2 {if $quoteAuthorObject}
3 <div class="quoteAuthorAvatar"><a href="{link controller='User' object=$quoteAuthorObject}{/link}" class="userLink framed" data-user-id="{@$quoteAuthorObject->userID}">{@$quoteAuthorObject->getAvatar()->getImageTag(64)}</a></div>
4 {/if}
5
6 <div class="container containerPadding">
7 {if $quoteAuthor}
8 <header>
9 <h3>
10 {if $quoteLink}
11 <a href="{@$quoteLink}"{if $isExternalQuoteLink} class="externalURL"{if EXTERNAL_LINK_REL_NOFOLLOW} rel="nofollow"{/if}{if EXTERNAL_LINK_TARGET_BLANK} target="_blank"{/if}{/if}>{lang}wcf.bbcode.quote.title{/lang}</a>
12 {else}
13 {lang}wcf.bbcode.quote.title{/lang}
14 {/if}
15 </h3>
16 </header>
17 {/if}
18
19 <div>
20 {@$content}
21 </div>
22 </div>
23 </blockquote>