Revert the <ul> fix which was not really correct, and fix another missing </li>.
This commit is contained in:
parent
009b173ebd
commit
467b4182d4
@ -9,7 +9,6 @@ fn nav_tree {
|
|||||||
| sed $dirfilter'/\/[^_.\/][^\/]*(\.(md|txt|html)|\/)$/!d; s!^'$sitedir'!!; '$dirclean \
|
| sed $dirfilter'/\/[^_.\/][^\/]*(\.(md|txt|html)|\/)$/!d; s!^'$sitedir'!!; '$dirclean \
|
||||||
| sort -u | awk -F/ '
|
| sort -u | awk -F/ '
|
||||||
function p(x, y, s) { for(i=0; i < x-y; i+=1) print s }
|
function p(x, y, s) { for(i=0; i < x-y; i+=1) print s }
|
||||||
BEGIN { lNF=1 }
|
|
||||||
{
|
{
|
||||||
d = ""
|
d = ""
|
||||||
if(match($0, "/$"))
|
if(match($0, "/$"))
|
||||||
@ -25,11 +24,11 @@ fn nav_tree {
|
|||||||
gsub("_", " ", bname)
|
gsub("_", " ", bname)
|
||||||
|
|
||||||
if(index(ENVIRON["req_path"] "/", path) == 1)
|
if(index(ENVIRON["req_path"] "/", path) == 1)
|
||||||
print "<li><a href=\"" path "\" class=\"thisPage\">»<i> " bname "</i></a>"
|
print "<li><a href=\"" path "\" class=\"thisPage\">»<i> " bname "</i></a></li>"
|
||||||
else
|
else
|
||||||
print "<li><a href=\"" path "\">› " bname "</a></li>"
|
print "<li><a href=\"" path "\">› " bname "</a></li>"
|
||||||
}
|
}
|
||||||
END { p(lNF, 1, "</ul>") }'
|
END { p(lNF, 0, "</ul>") }'
|
||||||
}
|
}
|
||||||
|
|
||||||
fn link_bar {
|
fn link_bar {
|
||||||
|
Loading…
Reference in New Issue
Block a user