Files
TravianZ/templates/village/dorf1.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

27 lines
942 B
Smarty

<div id="content" class="village1">
<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>
<div id="cap" align="left">
{if $villageIsCapital} <font color=gray>({$smarty.const.VILLAGE_CAPITAL})</font>{/if}
</div>
{include file={$smarty.const.TEMPLATES_DIR}|cat:'village/field.tpl'}
<div id="map_details">
<br /><br />
{include file={$smarty.const.TEMPLATES_DIR}|cat:'village/movement.tpl'}
{include file={$smarty.const.TEMPLATES_DIR}|cat:'village/production.tpl'}
{include file={$smarty.const.TEMPLATES_DIR}|cat:'village/units.tpl'}
{if !empty($villageBuildingJobs)}
{include file={$smarty.const.TEMPLATES_DIR}|cat:'village/building.tpl'}
<br /><br /><br /><br /><br /><br />
{/if}
</div>
</div>