achubb_website/templates/test-navbar.html
2024-02-17 15:36:43 -05:00

19 lines
679 B
HTML

<!-- prettier-ignore -->
{% extends "base.html" %}
{% block title %}Another page to test out the navbar{% endblock %}
{% block content %}
<h1 class="font-bold text-indigo-500">Navbar test</h1>
<div class="overflow-hidden text-center m-0">
<ul class="p-0 flex justify-between list-none text-lg lg:text-2xl">
<li><a class="text-red" href="/blog">Blog</a></li>
<li><a class="text-red" href="/projects">Projects</a></li>
<li><a class="text-red" href="/now">Now</a></li>
<li><a class="text-red" href="/about">About</a></li>
<li><a class="text-red" href="/contact">Contact</a></li>
</ul>
</div>
TESTING ADDING More text
{% endblock %}