TECH I.S.

Django includeタグ


追加する

このincludeタグを使用すると、現在のページ内に他のテンプレートを追加することができます。

これは、多くのページで同じコンテンツのブロックがある場合に便利です。

templates/footer.html:
<p>You have reached the bottom of this page, thank you for your time.</p>
templates/template.html:
<h1>Hello</h1> <p>This page contains a footer in a template.</p> {% include 'footer.html' %}

実行例(開発準備中) »


includeの変数

withキーワードを使用して、変数をテンプレートに送信できます。

includeファイルでは、{{変数名}}構文を使用して変数を参照します。

templates/mymenu.html:
<div>HOME | {{ me }} | ABOUT | FORUM | {{ sponsor }}</div>
templates/template.html:
<!DOCTYPE html> <html> <body> {% include "mymenu.html" with me="TOBIAS" sponsor="W3SCHOOLS" %} <h1>Welcome</h1> <p>This is my webpage</p> </body> </html>

実行例(開発準備中) »



プログラミング学習を加速させる

プログラミングをプロの講師に教えてもらいませんか。

テックアイエスのプログラミングスクールは初心者も大歓迎です。年齢制限もありません。転職・副業に強く、挫折させない手厚いサポートで稼ぐ力を身につけましょう!

スクールの詳細