picopaper/theme/default/templates/header.tmpl

18 lines
574 B
Cheetah

<header>
<h1>
<a href="/" style="color: #333; text-decoration: none;">
{% if not hide_logo %}
<img src="{{ logo_path }}" alt="{{ blog_title }}" class="header-logo">
{% endif %}
{% if not hide_title %}
{{ blog_title }}
{% endif %}
</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>