22 lines
851 B
HTML
22 lines
851 B
HTML
<header class="site_header">
|
|
<img
|
|
class="panda"
|
|
src="{{ 'assets/panda.webp' | relative_url }}"
|
|
alt="Generated Image of an anthropomorphic Panda wearing a sweater and jeans, sitting on a couch, using a laptop."
|
|
/>
|
|
|
|
{%- if site.site_links -%}
|
|
<nav class="site_links">
|
|
{%- if page.url != "/" -%}
|
|
<a class="site_links__link" href="{{ "/" | relative_url }}">🏡 Front Page</a>
|
|
{%- endif -%}
|
|
{%- for my_page in site.site_links -%}
|
|
{%- if my_page.title -%}
|
|
<a class="site_links__link" href="{{ my_page.url }}" rel="me noreferrer" target="_blank">
|
|
{{ my_page.title | escape }}
|
|
</a>
|
|
{%- endif -%}
|
|
{%- endfor -%}
|
|
</nav>
|
|
{%- endif -%}
|
|
</header>
|