Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Um das klar zu stellen in den Templates file verwendet man keinen php code es sind ledigt Plazhalter notwenig.php templates brauchen php-code, sonst könnten sie die übergebenen variablen ja garnicht ausgeben.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="de" xml:lang="de">
<head>
<title>Mein Templatesystem: {$title}</title>
<meta http-equiv="Content-Type" content="text/xhtml; charset=ISO-8859-1" />
</head>
<body>
<h1>{$START}</h1>
Hallo {$name}. Der Aktuelle Timestamp lautet: {$time}
{loop=hallo}
<a href="{$link}">{$link}</a>
<b>gjgh</b><br>
{loop=mux}
<i>{$nix}</i><br>
{loop=mux end}
{loop=hallo end}
{* Ein Template einbinden *}
{include="othertemplate"}
</body>
</html>