diff options
Diffstat (limited to 'tmpl.index.htm')
-rw-r--r-- | tmpl.index.htm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tmpl.index.htm b/tmpl.index.htm index 427be53..9dd605b 100644 --- a/tmpl.index.htm +++ b/tmpl.index.htm | |||
@@ -9,7 +9,11 @@ $(sed 's#$(title)#acdw.casa#' _head.htm) | |||
9 | <section id="pages"> | 9 | <section id="pages"> |
10 | <h2>pages here</h2> | 10 | <h2>pages here</h2> |
11 | <ul> | 11 | <ul> |
12 | $(for p in ".tmp"/*.env; do . "$p"; print "<li><a href=\"$HTOUT\">$(title)</a></li>"; done) | 12 | $(: > .tmp/index-list; |
13 | for p in .tmp/*.env; do date() { echo "2022-05-01"; }; title() { :; }; . "$p"; | ||
14 | print "<li><!-- $(date) --><a href=\"$HTOUT\">$(title)</a></li>" \ | ||
15 | >> .tmp/index-list; done) | ||
16 | $(sort -r .tmp/index-list) | ||
13 | </ul> | 17 | </ul> |
14 | </section> | 18 | </section> |
15 | </main> | 19 | </main> |