# HG changeset patch # User Jim Hague # Date 1376902786 -3600 # Node ID b233893b4c51249ae66d24d51c5a370e51b6de5b # Parent 073c4022efb1a520be8d606fd505b03f593d8392 Add date of last change to bottom of web tune page. diff -r 073c4022efb1 -r b233893b4c51 dottes.html.tune --- a/dottes.html.tune Mon Aug 19 09:59:28 2013 +0100 +++ b/dottes.html.tune Mon Aug 19 09:59:46 2013 +0100 @@ -41,16 +41,25 @@ Change: @CHANGETITLE@ - + diff -r 073c4022efb1 -r b233893b4c51 makeWeb.sh --- a/makeWeb.sh Mon Aug 19 09:59:28 2013 +0100 +++ b/makeWeb.sh Mon Aug 19 09:59:46 2013 +0100 @@ -82,6 +82,7 @@ if [ -n "$credit" ]; then creditvisibility="yes" fi + lastchanged=`hg log --limit 1 --template "{date|shortdate}" $filename` # Copy the ABC into the web. cp $filename $webdir @@ -100,6 +101,7 @@ -e "s/@CHANGEVISIBILITY@/${changevisibility}/" \ -e "s/@CREDIT@/${credit}/" \ -e "s/@CREDITVISIBILITY@/${creditvisibility}/" \ + -e "s/@LASTCHANGED@/${lastchanged}/" \ -e "s/@TUNE@/${name}/" dottes.html.tune > $webdir/$tunepage sed -e "s/@TITLE@/${title//&/\&}/" \ diff -r 073c4022efb1 -r b233893b4c51 web/css/dottes.css --- a/web/css/dottes.css Mon Aug 19 09:59:28 2013 +0100 +++ b/web/css/dottes.css Mon Aug 19 09:59:46 2013 +0100 @@ -170,6 +170,30 @@ width: 25%; } +div.dottes-tune-footer +{ + display: table; + width: 100%; +} + +div.dottes-tune-footer-row +{ + display: table-row; +} + +div.dottes-tune-footer-left +{ + display: table-cell; + width: 50%; +} + +div.dottes-tune-footer-right +{ + display: table-cell; + text-align: right; + width: 50%; +} + a.dottes-tune-link { font-size: 20px;