-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
For example:
page.kit
<!DOCTYPE html>
<!-- @page = Page -->
<html>
<head>...</head>
<body>
<nav>
<!-- @import nav.kit -->
</nav>
...
</body>
</html>nav.kit
<ul>
<li <!-- @page == Home ? class="active" -->>
<a href="/">Home</a>
</li>
<li <!-- @page == Page ? class="active" -->>
<a href="/page.html">Page</a>
</li>
<li <!-- @page == Other ? class="active" -->>
<a href="/other.html">Other</a>
</li>
</ul>page.html
<!DOCTYPE html>
<html>
<head>...</head>
<body>
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
<li class="active">
<a href="/page.html">Page</a>
</li>
<li>
<a href="/other.html">Other</a>
</li>
</ul>
</nav>
...
</body>
</html>Metadata
Metadata
Assignees
Labels
No labels