eesyphp/example/templates/homepage.tpl

15 lines
610 B
Smarty
Raw Normal View History

{extends file='Tpl:empty.tpl'}
2020-04-18 00:51:33 +02:00
{block name="pagetitle"}{/block}
{block name="content"}
<div class="jumbotron">
<h1 class="display-4">{t}Hello, world!{/t}</h1>
<p class="lead">{t}This is a simple app to show the different possibilities and basic functionality.{/t}</p>
2023-03-02 15:03:42 +01:00
<p class="lead">
{t 1=App::get("public_root_url") escape=false}The access to this application is available by the following URL: <a href="%1">%1</a>{/t}
</p>
2020-04-18 00:51:33 +02:00
<hr class="my-4">
<p>{t}This app contains some demo pages:{/t}</p>
<a class="btn btn-primary btn-lg" href="item" role="button">{t}Search page{/t}</a>
2020-04-18 00:51:33 +02:00
</div>
{/block}