Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronTraas committed Apr 27, 2024
1 parent 80c1fd1 commit 82cff20
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ <h2>{{ site.description | default: site.github.project_tagline }}</h2>
<h2><a href="/Notes/{{section_dir}}/">{{section_name}}</a></h2>
<ul>
{% for page in site.pages | sort: 'title' %}
{% assign section = page.dir | remove_first: '/' | split: '/' | first %}
{% if page.dir contains 'Untested' %}
{% assign segments = page.dir | remove_first: '/' | split: '/' %}
{% assign section = segments | first %}
{% if segments contains 'Untested' %}
<!-- Untested: {{page.dir}} -->
{% elsif section == section_dir and %}
<li><a href="/Notes{{page.url}}">{{page.title}}</a></li>
Expand Down

0 comments on commit 82cff20

Please sign in to comment.