Files
TravianZ/templates/village/dorf2.tpl
T
iopietro 62d6e19ee9 The first release of the refactored version
It's still a work in progress, there are a lot of things that will
change in the final release
2018-09-16 17:22:39 +02:00

18 lines
521 B
Smarty

<div id="content" class="village2">
<h1>
{$villageName}
{if $villageLoyalty < 100}
{if $villageLoyalty > 33}
{assign var='color' value='gr'}
{else}
{assign var='color' value='re'}
{/if}
<div id="loyality" class="{$color}">
{$smarty.const.LOYALTY}: {$villageLoyalty}%
</div>
{/if}
</h1>
{include file={$smarty.const.TEMPLATES_DIR}|cat:'village/village.tpl'}
{if !empty($villageBuildingJobs)} {include file={$smarty.const.TEMPLATES_DIR}|cat:'village/building.tpl'} {/if}
</div>