Skip to content

Commit

Permalink
hide Linux SDK page
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Aug 30, 2023
1 parent 238b48e commit 47043d6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions notes/linuxdev/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
layout: page
title: How To Use the Linux SDK
category: notes
hidden: true
---

## DISCONTINUED
Expand Down
10 changes: 9 additions & 1 deletion siteindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
<h5>About</h5>
{% for page in sorted_pages %}
{% if page.category == 'about' %}
<p><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></p>
{% if page.hidden != true %}
<p><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></p>
{% endif %}
{% endif %}
{% endfor %}
<a href="{{ site.baseurl }}/blog/">News (Blog)</a><br>
Expand All @@ -35,7 +37,9 @@ <h5>About</h5>
<h5>Help</h5>
{% for page in sorted_pages %}
{% if page.category == 'help' %}
{% if page.hidden != true %}
<p><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></p>
{% endif %}
{% endif %}
{% endfor %}
<div class="spacing"></div>
Expand All @@ -47,7 +51,9 @@ <h5>Help</h5>
<h5>Technical Notes</h5>
{% for page in sorted_pages %}
{% if page.category == 'notes' %}
{% if page.hidden != true %}
<p><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></p>
{% endif %}
{% endif %}
{% endfor %}
<div class="spacing"></div>
Expand All @@ -57,7 +63,9 @@ <h5>Technical Notes</h5>
<h5>Other</h5>
{% for page in sorted_pages %}
{% if page.category == 'other' %}
{% if page.hidden != true %}
<p><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></p>
{% endif %}
{% endif %}
{% endfor %}
<div class="spacing"></div>
Expand Down

0 comments on commit 47043d6

Please sign in to comment.