This is just a WiP to test a new website template. Taken online from source referenced in the sidebar footer. Very nice and clean look, have not had the time to add all features yet and is only used to demonstrate it.
16 lines
530 B
Smarty
16 lines
530 B
Smarty
<article class="module width_full">
|
|
<header>
|
|
<h3 class="tabs_involved">Stats</h3>
|
|
<ul class="tabs">
|
|
<li><a href="#mine">Mine</a></li>
|
|
<li><a href="#pool">Pool</a></li>
|
|
<li><a href="#both">Both</a></li>
|
|
</ul>
|
|
</header>
|
|
<div class="tab_container">
|
|
{include file="{$smarty.request.page}/{$smarty.request.action}/mine.tpl"}
|
|
{include file="{$smarty.request.page}/{$smarty.request.action}/pool.tpl"}
|
|
{include file="{$smarty.request.page}/{$smarty.request.action}/both.tpl"}
|
|
</div>
|
|
</article>
|