Bıyık Partials ve kod yeniden

0 Cevap php

Ben hafta sonu başladım, bir proje için bıyık asmak alıyorum.

Ben PHP uygulaması kullanıyorum. Ben, ben sisteme alışık değilim gibi sorular ancak bir çift.

How do you handle template inheritance, or reuse? I know of partials, but how should I use them? I'm doing something like this, ala include:

top.mustache:

<!DOCTYPE html>
<html lang='es'>
<head>
    <meta charset=utf-8" />
    <link rel="stylesheet" href="/media/style.css" type="text/css" media="screen" />
</head>
<body>
     <header><h1><a href="/">Top</a></h1>
     </header>
     <section>

bottom.mustache:

        </section>
        <footer><a href="http://potajecreativo.com/">potaje</a></footer>
</body>
</html>

Ve bir görünüm bu şablonu işlemek için:

{{>top}}
<form action="/album/" method="post">
    <p><label for="name">Name</label> <input type="text" name="name" value=""/></p>
    <p><label for="description">Description</label> <textarea name="description" rows="8" cols="40"></textarea></p>
    <p><input type="submit" value="Save" /></p>
</form>
{{>bottom }}

Bu doğru bir yaklaşım mı?

0 Cevap