Remove unnecessary white space and {{ _ugly_url }}

- White space was added in error
- The {{ _ugly_url }} is not useful here because these are pages with
  anchor tags and adding index.html to the end of these doesn't provide
  value
This commit is contained in:
Che 2022-08-01 20:32:32 -04:00
parent 6aab3eef30
commit 5df8051283
1 changed files with 1 additions and 7 deletions

View File

@ -101,13 +101,7 @@
<ul>
{% for h3 in h2.children -%}
<li>
<a href="
{{ h3.permalink | safe }}{{ _ugly_url }}">{{ h3.title }}</a>
<a href="{{ h3.permalink | safe }}">{{ h3.title }}</a>
</li>
{% endfor -%}
</ul>