add meta data (language, description, keywords)
[sheet.git] / mutt.plp
index 7ecf7fc8cbb2864a3886ccaeea95a703ef1adb7b..3055bcd14ce04e592858a860ea981f0982513a50 100644 (file)
--- a/mutt.plp
+++ b/mutt.plp
@@ -1,34 +1,25 @@
-<:
-use utf8;
-use strict;
-use warnings;
-no  warnings 'qw';  # you know what you doing
-no  warnings 'uninitialized';  # save some useless checks for more legible code
-
-use Shiar_Sheet::KeySigns qw(%sign);
+<(common.inc.plp)><:
+       our $VERSION = 'v1.0';
 
-our $VERSION = 'v1.0';
+       use Shiar_Sheet::KeySigns qw(%sign);
 
-$header{content_type} = "text/html; charset=$sign{charset}";
+       $header{content_type} = "text/html; charset=$sign{charset}";
 
 :><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
-<html>
+<html lang="en">
 
 <head>
-<title>mutt cheat sheet</title>
 <meta http-equiv="content-type" content="<:= $header{content_type} :>">
-<link rel="stylesheet" type="text/css" media="all" href="base.css">
+<title>mutt cheat sheet</title>
+<meta name="description" content="Keyboard functionality overview sheet for the Mutt e-mail client.">
+<meta name="keywords" content="mutt, MUA, email, client, sheet, cheat, reference, overview, commands, keyboard">
+<:= stylesheet(qw'light dark circus mono red terse') :>
 <!--[if lte IE 6]><style> .help dl.legend dt {margin:0 0 1px} </style><![endif]-->
 <!--[if lte IE 7]><style> .help dl.legend dd {float:none} </style><![endif]--><:
-       my %styles = map {$_ => $_} qw(dark circus mono red terse);
-       our $style = exists $get{style} && $styles{$get{style}} || 'light';
-       printf(qq{\n<link rel="%s" type="text/css" media="all" href="%s" title="%s">},
-               $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "$_.css", $_
-       ) for keys %styles;
-
        our $showkeys = exists $get{keys} && $get{keys} ne '0';
-       print "\n".'<style type="text/css"> .no {visibility:hidden} </style>' unless $showkeys;
+       print "\n".'<style type="text/css"> .no {visibility:hidden} </style>'
+               unless $showkeys;
        print "\n".'<style type="text/css"> .no, .alias {opacity:.5} </style>'
                if $showkeys and $get{keys} eq 'ghost';
 :>
@@ -64,10 +55,10 @@ $keys->print_rows($get{rows});
                <dl class="legend legend-types">
                <dt class="ci">aside
                        <dd>Temporarily display something without changing state.
-               <dt class="pm">move
-                       <dd>Scroll window, only selecting a different message when necessary.
-               <dt class="po">select
-                       <dd>Select another message entry.
+               <dt class="pm">select
+                       <dd>Scroll list and/or select a different line.
+               <dt class="po">search
+                       <dd>Go to a specific message entry.
                <dt class="co">edit
                        <dd>Modify message flags or contents.
                <dt class="mi">command
@@ -103,11 +94,13 @@ $keys->print_rows($get{rows});
 </div>
 
 <p class="footer">
-       <a href="/" rel="home">sheet.shiar.nl</a>/mutt
-       <a href="git://git.shiar.nl/sheet" rel="vcs-git" title="Git repository"><:= $VERSION :></a>
+       <a href="/" rel="home">sheet.shiar.nl</a>/mutt.<a href="/source/mutt.plp"
+        rel="code" title="Written in Perl">plp</a>
+       <a href="http://git.shiar.nl/sheet.git/history/HEAD:/mutt.plp"
+        rel="vcs-git" title="Git repository"><:= $VERSION :></a>
        created by <a href="http://shiar.nl/" rel="author">Shiar</a> <:= $sign{sep} :>
-       <a title="Licensed under the GNU Affero General Public License, version 3" rel="copyright"
-          href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPLv3</a>
+       <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html" rel="copyright"
+        title="Licensed under the GNU Affero General Public License, version 3">AGPLv3</a>
 </p>
 
 </html>