tweak hiddens and exclude file

main
Jay Hankins 2022-08-28 19:15:55 -04:00
parent 2719fa8b0c
commit a9df8733c6
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
title: wiki.sadcomputer.net title: wiki.sadcomputer.net
include: ['_pages'] include: ['_pages']
exclude: ['_includes/notes_graph.json'] exclude: ['_includes/notes_graph.json', 'README.md', 'LICENSE']
# You may need to change the base URL depending on your deploy configuration. # You may need to change the base URL depending on your deploy configuration.
# Specifically, when using GitHub Pages, the baseurl should point to where GitHub # Specifically, when using GitHub Pages, the baseurl should point to where GitHub
# Pages deploys your repository (which is usually the repository name). # Pages deploys your repository (which is usually the repository name).

View File

@ -15,4 +15,4 @@ Here are some broad-level starting topics:
- **[[Programming]]** - **[[Programming]]**
- **[[Smart Home]]** - **[[Smart Home]]**
Or, view [[all|all pages]]. Or, view [[all|all content]].

View File

@ -4,12 +4,12 @@ title: All pages
permalink: /all permalink: /all
--- ---
# All pages and notes # All content
## Pages ## Pages
<ul> <ul>
{% assign pages = site.html_pages | where:"hidden",hidden!=true | sort_natural %} {% assign pages = site.html_pages | where_exp:"page","page.hidden!=true" | sort_natural %}
{% for note in pages %} {% for note in pages %}
<li><a class="internal-link" href="{{ note.url }}">{{note.title}}</a></li> <li><a class="internal-link" href="{{ note.url }}">{{note.title}}</a></li>
{% endfor %} {% endfor %}