Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AWS AI GO KOTLIN SASS VUE GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

includes Template Tag


Example

Include a template inside the template:

<!DOCTYPE html>
<html>
<body>

{% include mymenu.html %}

<h1>Welcome</h1>

<p>This is my webpage</p>

</body>
</html>
Run Example »

Definition and Usage

The include tag allows you to include content from another template.

Place the include tag exactly where you want the content to be displayed.

This is useful when you have the same content for many pages.

You can also send variables into the template, by using the with keyword:

Example

If the include file looks like this:

<div>HOME | {{ me }} | ABOUT | FORUM | {{ sponsor }}</div>

The template can send variable values into the include like this:

<!DOCTYPE html>
<html>
<body>

{% include mymenu.html with me="ALEXANDER" sponsor="W3SCHOOLS" %}

<h1>Welcome</h1>

<p>This is my webpage</p>

</body>
</html>
Run Example »

Syntax

{% include template %}

or

{% include template with key=value%}

Parameters

Value Description
template Required. The filename of the template. Either a string or a variable.
key=value Optional. A variable name and value to send into the include file. Used together with the with keyword. You can have as many key/value pairs as you like.

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2023 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.