Skip to content

Commit

Permalink
fix buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
stmorse committed Sep 4, 2024
1 parent 3b476d4 commit f87f252
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@
{% for item in site.data.navigation %}
{% if item.children %}
{% for child in item.children %}
{% if item.url %}
{% if item.url == page.url %}
{% if child.url %}
{% if child.url == page.url %}
{% assign found = true %}
{% elsif found %}
{% assign next_page = item %}
{% assign next_page = child %}
{% break %}
{% else %}
{% assign prev_page = item %}
{% assign prev_page = child %}
{% endif %}
{% endif %}
{% endfor %}
Expand Down

0 comments on commit f87f252

Please sign in to comment.