font: include math/logic by default
[sheet.git] / index.plp
index 1a48c15d1cbb50df7e3e12bd6bb60a7a158130d0..1aaf0f6ec346ff4d17f289c182ab33edd4be51b9 100644 (file)
--- a/index.plp
+++ b/index.plp
@@ -2,7 +2,7 @@
 
 Html({
        title => 'cheat sheets',
-       version => 'v1.3',
+       version => 'v1.4',
        description => [
                "Cheat sheets summarising various software programs and standards.",
        ],
@@ -23,32 +23,51 @@ Originally created by Mischa <span style="font-variant:small-caps">Poslawsky</sp
 but you're free to use, print, alter, and redistribute under the AGPL license.
 </p>
 
-<section>
+<div class="section">
 <h2>Keyboard maps</h2>
 <ul>
 <li><a href="/readline">readline</a>
+<li><a href="/less">less</a>
 <li><a href="/vi">vi/vim</a>
 <li><a href="/vimperator">vimperator</a>
 <li><a href="/mutt">mutt</a>
 <li><a href="/nethack">nethack</a>
 <li><a href="/mplayer">mplayer</a>
 </ul>
-</section>
+</div>
 
-<section>
+<div class="section">
 <h2>Unicode characters</h2>
 <ul>
 <li><a href="/charset">charsets</a>
 <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>
-</section>
+</div>
 
-<section>
+<div class="section">
 <h2>Other references</h2>
 <ul>
+<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>
-</section>
+</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";
+}