change theme to buck

This commit is contained in:
thislight 2024-01-10 18:35:50 +08:00
parent 014b4f6dc7
commit 88da620079
No known key found for this signature in database
GPG key ID: A50F9451AC56A63E
99 changed files with 2197 additions and 38 deletions

View file

@ -0,0 +1,16 @@
{% set theme = site.data.theme %}
{% macro sitenav(title = config.title) %}
<div class="nav-wrapper">
<nav class="site">
<div>
<h6>{{ title }}</h6>
</div>
<div>
{% for name, link in theme.site_nav_links %}
<a href="{{ link }}">{{ name }}</a>
{% endfor %}
</div>
</nav>
</div>
{% endmacro %}