|
넌적스 |
HTML |
|
header.html <header>
<a href="/">Home</a>
<a href="/about">About</a>
</header>
footer.html <footer>
<div>푸터입니다</div>
</footer>
main.html {% include "header.html" %}
<main>
<h1>메인 파일</h1>
<p>다른 파일을 include할 수 있습니다.</p>
</main>
{% include "footer.html" %}
|
<header> <a href="/">Home</a> <a href="/about">About</a> </header> <main> <h1>메인 파일</h1> <p>다른 파일을 include할 수 있습니다.</p> </main> <footer> <div>푸터입니다.</div> </footer> |