wycats / handlebars-site

56 stars 66 forks source link

How to remove a Special “ include ” by Handlebars? #197

Open Alhamou opened 6 years ago

Alhamou commented 6 years ago

i have this in my layouts Home Page:

{{>head}} 

{{>navbar}} 

    {{{body}}} 

{{>footer}}

in this Page in don't need this INCLUDE {{ > navbar }} but how ?

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <h1>Hello World!</h1>
</body>
</html>

How can i remove this Special "include" in Handlebars?