9f0a216c5e
- Created index.html template for the homepage with service cards and partner logos. - Added page_from_md.html template for rendering pages from markdown. - Developed services.html template detailing various services offered. - Implemented tests for link handling in markdown, ensuring external links open in new tabs and internal links function correctly. - Enhanced markdown parser tests to validate heading extraction, content rendering, and link safety. - Introduced utility tests for template rendering, HTML minification, and JavaScript minification. Co-authored-by: Copilot <copilot@github.com>
23 lines
753 B
HTML
23 lines
753 B
HTML
<nav id="site-navigation">
|
|
<div id="site-navigation-container">
|
|
<div id="site-navigation-content">
|
|
<div id="site-navigation-bar">
|
|
<div id="site-navigation-brand">
|
|
<a href="index.html" class="site-home-link">AllYouCanGET</a>
|
|
</div>
|
|
<div class="nav-toggle hidden md:block">
|
|
<div id="site-nav-links">
|
|
{% for key, page in nav_pages.items() %} {% if page.active %}
|
|
<a href="{{ page.url }}" class="site-nav-link active"
|
|
>{{ page.name }}</a
|
|
>
|
|
{% else %}
|
|
<a href="{{ page.url }}" class="site-nav-link">{{ page.name }}</a>
|
|
{% endif %} {% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|