{% import "pypi_ds/components/forms.html" as forms %}
{% import "pypi_ds/components/navigation.html" as navigation %}
{% macro site_header(
brand_name="PyPI",
brand_href="/",
search_action="/search",
search_query="",
search_placeholder="Type '/' to search projects",
nav_items=None,
secondary_items=None,
site_state="production",
asset_base="/static/pypi_ds"
) -%}
{% if nav_items is none %}
{% set nav_items = [
{"label": "Help", "href": "/help"},
{"label": "Docs", "href": "/docs"},
{"label": "Sponsors", "href": "/sponsors"}
] %}
{% endif %}
{% if secondary_items is none %}
{% set secondary_items = [
{"label": "Log in", "href": "/login"},
{"label": "Register", "href": "/register"}
] %}
{% endif %}