Example #1
0
?>
					</div>

					<div class="avatar">
						<img src="<?php 
echo ThemeFunctions::getUserAvatar();
?>
" alt="Avatar" />
					</div>
				</div>
			</aside>
		</div>

		<div id="header_wrap">
			<header>
				<div class="logo">
					<img src="/images/quicktalk/wide_translucent_fordark.svg" alt="<?php 
echo Templates::getVar('pageTitle');
?>
" />
				</div>

				<nav>
					<?php 
echo ThemeFunctions::getNavigation();
?>
				</nav>
			</header>
		</div>

		<div id="content">
Example #2
0
			<div class="lastPost">
				<?php 
    $lastPost = $topic->getLastPost();
    if ($lastPost instanceof ForumPost) {
        ?>
				
					<a href="<?php 
        echo URLController::get($lastPost);
        ?>
"><b><?php 
        echo $lastPost->getTopic()->getShortTitle(32);
        ?>
</b></a>
					by <?php 
        echo ThemeFunctions::getUserURL($lastPost);
        ?>
<br />
					<small class="grey"><?php 
        echo $lastPost->getFormattedDate();
        ?>
</small>
					
				<?php 
    } else {
        ?>
					-
				<?php 
    }
    ?>
			</div>