diff options
-rwxr-xr-x | www/scripts/build.sh | 2 | ||||
-rw-r--r-- | www/templates/header.html | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/www/scripts/build.sh b/www/scripts/build.sh index 8bf6ffc..985725a 100755 --- a/www/scripts/build.sh +++ b/www/scripts/build.sh | |||
@@ -174,7 +174,7 @@ index_list=() | |||
174 | # }}} | 174 | # }}} |
175 | # for each markdown file {{{ | 175 | # for each markdown file {{{ |
176 | 176 | ||
177 | files="$(find "$INPUT_DIR" -type f -name '*md')" | 177 | files="$(find "$INPUT_DIR" -type f,l -name '*md')" |
178 | total=$(wc -l <<<"$files") | 178 | total=$(wc -l <<<"$files") |
179 | declare -i counter | 179 | declare -i counter |
180 | for file in $files; do | 180 | for file in $files; do |
diff --git a/www/templates/header.html b/www/templates/header.html index f9d19ec..c2ee563 100644 --- a/www/templates/header.html +++ b/www/templates/header.html | |||
@@ -1,6 +1,7 @@ | |||
1 | <header> | 1 | <header> |
2 | <nav class="left"> | 2 | <nav class="left"> |
3 | <!--<a style="color: Navy; font-weight: 900;"href="/TODAY">TODAY</a>--> | 3 | <!-- <a style="color: Navy; font-weight: 900;"href="/TODAY">TODAY</a> | --> |
4 | <!-- <a style="color: Navy; font-weight: 900;"href="https://outdoorsafetylab.github.io/dumbymap/#">MAP</a> | --> | ||
4 | <a href="/">Home</a> | | 5 | <a href="/">Home</a> | |
5 | <a href="/about.html" data-tooltip="About this site">About</a> | | 6 | <a href="/about.html" data-tooltip="About this site">About</a> | |
6 | <a href="/posts/">Posts</a> | | 7 | <a href="/posts/">Posts</a> | |