This commit is contained in:
shimingxy
2020-03-07 10:21:38 +08:00
parent 2ca1f7fc11
commit a72a91deef
13 changed files with 475 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{% assign default_paths = site.pages | map: "path" %}
{% assign page_paths = site.header_pages | default: default_paths %}
{% for path in page_paths %}
{% assign page = site.pages | where: "path", path | first %}
{% if page.title %}
<a href="{{ page.url }}">{{ page.title }}</a>
{% endif %}
{% endfor %}