diff options
Diffstat (limited to 'templates/macros/header.html')
| -rw-r--r-- | templates/macros/header.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/macros/header.html b/templates/macros/header.html new file mode 100644 index 0000000..ff6cd44 --- /dev/null +++ b/templates/macros/header.html @@ -0,0 +1,26 @@ +{% macro site_header(activePage="") %} +<h1><a href="/">{{ config.title }}</a></h1> +<nav> + <ul> + <li> + <a href="/"{% if activePage == "/" %} id="nav-active-link"{% endif %}>Home</a> + </li> + + <li> + <a href="/posts"{% if activePage == "/posts" %} id="nav-active-link"{% endif %}>Posts</a> + </li> + + <li> + <a href="/about"{% if activePage == "/about/" %} id="nav-active-link"{% endif %}>About</a> + </li> + + <li> + <a href="/guestbook"{% if activePage == "/guestbook/" %} id="nav-active-link"{% endif %}>Guestbook</a> + </li> + + <li> + <a href="https://vidhukant.com" target="_blank">Main Website</a> + </li> + </ul> +</nav> +{% endmacro header %} |