keys: lower background letters in portrait styling
[sheet.git] / index.plp
1 <(common.inc.plp)><:
2
3 Html({
4         title => 'cheat sheets',
5         version => '1.10',
6         description => [
7                 "Cheat sheets summarising various software programs and standards.",
8         ],
9         keywords => [qw'
10                 sheet cheat reference software overview summary help keyboard map unicode
11         '],
12         raw => [
13                 '<link rel="sitemap" type="application/xml" href="/sitemap.xml">',
14                 '<link rel="alternate" type="application/rss+xml"',
15                 ' title="RSS feed of repository updates"',
16                 ' href="http://git.shiar.nl/sheet.git/rss">',
17         ],
18 });
19
20 :>
21 <h1>Shiar's cheat sheets</h1>
22
23 <p>
24 Through the miracle of formatting, design, abbreviation, compression, and Perl,
25 the following topics have been condensed into single pages of reference.
26 <br>
27 Originally created by Mischa <span class="family-name">Poslawsky</span>,
28 but you're free to use, print, alter, and redistribute under the AGPL license.
29 </p>
30 <:
31 my @format = ('--date=short', "--pretty=%ad (%ar)\t%s");
32 if (open my $log, '-|', git => 'log', -1, @format) {{
33         my $line = readline $log;
34         $line or next;  # explicitly ignore empty input
35         my ($date, $subject) = split /[\t\n]/, $line;
36         $date =~ s/ \K/<small>/ and $date .= '</small>';
37         say "<p><strong>Last update</strong>: $date $subject</p>";
38 }}
39
40 :>
41 <nav>
42 <div class="section">
43 <h2>Keyboard maps</h2>
44 <ul>
45 <li><a href="/readline">readline</a>
46 <li><a href="/screen">screen</a>
47 <li><a href="/less">less</a>
48 <li><a href="/vi">vi/vim</a>
49 <li><a href="/vimperator">vimperator</a>
50 <li><a href="/mutt">mutt</a>
51 <li><a href="/nethack">nethack</a>
52 <li><a href="/mplayer">mplayer</a>
53 </ul>
54 </div>
55
56 <div class="section">
57 <h2>Unicode characters</h2>
58 <ul>
59 <li><a href="/charset">charsets</a>
60 <li><a href="/unicode">common glyphs</a>
61 <li><a href="/digraphs">digraphs</a>
62 <li><a href="/writing">alphabet comparison</a>
63 <li><a href="/latin">latin variants</a>
64 <li><a href="/digits">numerals</a>
65 <li><a href="/font">font coverage</a>
66 </ul>
67 </div>
68
69 <div class="section">
70 <h2>Other references</h2>
71 <ul>
72 <li><a href="/browser">browser support</a>
73 <li><a href="/countries">country codes</a>
74 <li><a href="/perl">perl versions</a>
75 <li><a href="/apl">apl symbols</a>
76 <li><a href="/termcol">terminal colours</a>
77 <li><a href="/sc/2">starcraft 2 units</a>
78         (<a href="/sc" title="StarCraft: Brood War">bw</a>)
79 <li><a href="/emoji">emoticons</a>
80 </ul>
81 </div>
82 </nav>
83