<template>
	name = Module
	description = my module sceleton
	content = <<EOF
package [$$firstname];
$VERSION = '0.00';

use strict;
use warnings;

1;
EOF
</template>
<template>
	name = POD
	description = some POD directives
	content = <<EOF
=pod

=head1

=over 4

=item * 

=back 4

=cut
EOF
</template>
<template>
	name = HTML Begin
	description = HTML Document Skeleton
	content = <<EOF
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
  <head>
    <title></title>
  </head>
  <body>
  </body>
<html>
EOF
</template>