2007-06-17 17:45:45 -06:00
|
|
|
<h1>Site map</h1>
|
|
|
|
|
|
|
|
%{
|
|
|
|
|
|
|
|
saveddf = $dirfilter
|
|
|
|
|
2007-06-23 17:21:17 -06:00
|
|
|
fn getMdDesc {
|
|
|
|
sed 's/^(.......................................................................................................[^ ]*).*$/\1/g; 1q' < $1
|
|
|
|
}
|
|
|
|
|
2007-06-17 17:45:45 -06:00
|
|
|
fn listDir {
|
2008-09-04 17:07:56 -06:00
|
|
|
d=$1
|
2007-06-17 17:45:45 -06:00
|
|
|
dirfilter = $saveddf
|
2007-06-25 20:25:20 -06:00
|
|
|
blogDirs = ()
|
2008-09-04 17:07:56 -06:00
|
|
|
if (test -f $d/_config)
|
|
|
|
. $d/_config
|
2007-06-17 17:45:45 -06:00
|
|
|
|
|
|
|
echo '<ul>'
|
2007-06-25 20:25:20 -06:00
|
|
|
|
|
|
|
if (! ~ $#blogDirs 0 || ~ $1 blog Blog )
|
|
|
|
echo ''
|
|
|
|
if not {
|
|
|
|
|
2008-09-04 17:07:56 -06:00
|
|
|
for ( i in `{ ls -d $d/*/ $d/*.md $d/*.html >[2]/dev/null |sed $dirfilter^'/index$/d;' } ) {
|
2007-06-17 17:45:45 -06:00
|
|
|
desc = ''
|
|
|
|
if (test -f $i.md) {
|
2007-06-23 17:21:17 -06:00
|
|
|
desc = `{ getMdDesc $i.md }
|
2007-06-17 17:45:45 -06:00
|
|
|
}
|
|
|
|
if (test -f $i/index.md) {
|
2007-06-23 17:21:17 -06:00
|
|
|
desc = `{ getMdDesc $i/index.md }
|
2007-06-17 17:45:45 -06:00
|
|
|
}
|
|
|
|
if (test -f $i.html) {
|
|
|
|
# H1 is not reliable because htmlroff doesn't use it :(
|
|
|
|
#desc = `{ cat $i.html |sed 32q | grep '<[Hh]1>' |sed 's/<[Hh]1>(.*)(<\/[Hh]1>|$)/\1/;s/<[^>]*>//g;1q' }
|
|
|
|
# Pick the first line of body instead
|
2007-06-17 21:30:46 -06:00
|
|
|
desc = `{ /bin/sed -e '0,/<[Bb][Oo][Dd][Yy]/d;s/<[^>]*>//g;/^$/d' < $i.html >[2]/dev/null | sed 1q }
|
2007-06-17 17:45:45 -06:00
|
|
|
}
|
|
|
|
if (! ~ $desc '')
|
|
|
|
desc = ' - '$"desc
|
2008-09-04 17:07:56 -06:00
|
|
|
tit = `{basename $i|sed 's/_/ /g'}
|
|
|
|
echo '<li><a style="text-transform: capitalize" href="'$i'">'^$"tit^'</a>' $desc '</li>'
|
|
|
|
if (test -d $i)
|
|
|
|
@{ listDir $i }
|
2007-06-17 17:45:45 -06:00
|
|
|
}
|
2007-06-25 20:25:20 -06:00
|
|
|
}
|
2007-06-17 17:45:45 -06:00
|
|
|
echo '</ul>'
|
|
|
|
}
|
2008-09-04 17:07:56 -06:00
|
|
|
|
2007-06-17 17:45:45 -06:00
|
|
|
cd $sitedir
|
|
|
|
listDir .
|
|
|
|
|
|
|
|
%}
|