mirror of
https://github.com/tcsenpai/obsidiangarden_netlify.git
synced 2025-06-06 20:55:21 +00:00
18 lines
657 B
Plaintext
18 lines
657 B
Plaintext
<nav class="navbar">
|
|
<div class="navbar-inner">
|
|
<i style="font-size: 1.5rem; margin-right: 10px;" @click="showFilesMobile=!showFilesMobile" class="fa fa-bars"></i>
|
|
{% for imp in dynamics.filetree.beforeTitle %}
|
|
{% include imp %}
|
|
{% endfor %}
|
|
<a href="/" style="text-decoration: none;">
|
|
<h1 style="margin: 15px !important;">{{meta.siteName}}</h1>
|
|
</a>
|
|
{% for imp in dynamics.filetree.afterTitle %}
|
|
{% include imp %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% if settings.dgEnableSearch === true%}
|
|
{% include "components/searchButton.njk" %}
|
|
{%endif%}
|
|
</nav> |