9 lines
336 B
Cheetah
9 lines
336 B
Cheetah
<header>
|
|
<h1><a href="/" style="color: #333; text-decoration: none;">{{ blog_title }}</a></h1>
|
|
<p class="blog-description">{{ blog_description }}</p>
|
|
<nav class="main-nav">
|
|
{% for item in navbar_items %}
|
|
<a href="{{ item.url }}" class="nav-item">{{ item.text }}</a>
|
|
{% endfor %}
|
|
</nav>
|
|
</header>
|