mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-09-02 00:27:12 +00:00
62d6e19ee9
It's still a work in progress, there are a lot of things that will change in the final release
18 lines
521 B
Smarty
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> |