#!/usr/bin/env perl

my $bydate = `cat _bydate.txt`;
my $summary = `cat _tmp_summary.txt`;

my $html='<html><head><title>swad-europe workplan: generated overview page</title>';


$html .= '<link rel="StyleSheet" type="text/css"  href="style/swad-europe.css"  /></head><body><h1>SWAD-Europe Overview</h1>';
$html .= "\n\n<pre>\n\n$bydate\n\n</pre>\n\n<h2>Details</h2>\n\n<pre>$summary</pre>\n\n</body></html>\n\n";

print $html;
