progetto di prova che mostra le macchine fiat e un form che permette di contattare
filippo.bertilotti
2024-04-23 c9af8d7c2080037df85f148bf7f92dc1704ab6d3
creazione template per tipo.php
1 files added
2 files modified
21 ■■■■■ changed files
htdocs/tipo.php 2 ●●● patch | view | raw | blame | history
ihtml/index.tpl 1 ●●●● patch | view | raw | blame | history
ihtml/tipo.tpl 18 ●●●●● patch | view | raw | blame | history
htdocs/tipo.php
@@ -6,6 +6,6 @@
    $smarty->setTemplateDir('../ihtml');
    $smarty->setCompileDir('../compile');
    
    $smarty->display('header.tpl');
    $smarty->display('tipo.tpl');
    echo "fiat tipo";
?>
ihtml/index.tpl
@@ -11,6 +11,5 @@
    {include file="header.tpl"} 
    <h1>Scegli l'automobile piĆ¹ adatta a te!</h1>
    {include file="footer.tpl"}
</body>
</html>
ihtml/tipo.tpl
New file
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    {include file="header.tpl"}
    <main>
        <img src="files_comuni/images/tipo.jpg">
        <article>
            Lorem ipsum dolor sit amet consectetur adipisicing elit. Perspiciatis dicta fugiat molestiae ex, illo dolorem mollitia soluta molestias laborum rerum et voluptas facere sapiente animi neque dolorum rem. Quis, modi!
        </article>
    </main>
    {include file="footer.tpl"}
</body>
</html>