mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
17 lines
207 B
Smarty
17 lines
207 B
Smarty
|
<html>
|
||
|
<head>
|
||
|
<title>Simple template about {$name|upper}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
{if $name}
|
||
|
My name is {$name}
|
||
|
{else}
|
||
|
I haven't name :(
|
||
|
{/if}
|
||
|
|
||
|
Ok.
|
||
|
|
||
|
My email {$email}. It is great!
|
||
|
</body>
|
||
|
</html>
|