font: include math/logic by default
[sheet.git] / index.plp
index e8b3a0f97d7a70f1be521424340606603d94de23..1aaf0f6ec346ff4d17f289c182ab33edd4be51b9 100644 (file)
--- a/index.plp
+++ b/index.plp
@@ -43,6 +43,7 @@ but you're free to use, print, alter, and redistribute under the AGPL license.
 <li><a href="/unicode">common glyphs</a>
 <li><a href="/digraphs">digraphs</a>
 <li><a href="/writing">script comparison</a>
+<li><a href="/font">font coverage</a>
 </ul>
 </div>
 
@@ -52,7 +53,21 @@ but you're free to use, print, alter, and redistribute under the AGPL license.
 <li><a href="/browser">browser support</a>
 <li><a href="/countries">country codes</a>
 <li><a href="/termcol">terminal colours</a>
+<li><a href="/sc">starcraft units</a>
 <li><a href="/emoji">emoticons</a>
 </ul>
 </div>
 
+<:
+if (open my $log, '-|', 'git log -20 --since=2\ week\ ago --pretty=%ai%x00%s%x00%h') {
+       print "<h1>Recent updates</h1>\n\n";
+       print "<dl>\n";
+       while (readline $log) {
+               chomp;
+               my ($date, $subject, $commit) = split /\0/, $_;
+               $date =~ s{( .+)}{<small>$1</small>};
+               printf '<dt>%s</dt><dd>%s</dd>'."\n", $date, $subject;
+       }
+       print "</dl>\n\n";
+}
+