Fixes minor spacing and comment nits (#1128)

This PR simply fixes a few spacing and comment nits I found.
This commit is contained in:
Eric Knibbe
2023-01-10 14:23:21 -05:00
committed by GitHub
parent c296f914af
commit 49d004f271
6 changed files with 12 additions and 13 deletions

View File

@@ -16,10 +16,10 @@ layout: table_wrappers
{% endcomment %}
{% capture nav %}
{% assign pages_top_size = site.html_pages
| where_exp:"item", "item.title != nil"
| where_exp:"item", "item.parent == nil"
| where_exp:"item", "item.nav_exclude != true"
| size %}
| where_exp:"item", "item.title != nil"
| where_exp:"item", "item.parent == nil"
| where_exp:"item", "item.nav_exclude != true"
| size %}
{% if pages_top_size > 0 %}
{% include nav.html pages=site.html_pages key=nil %}
{% endif %}