diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-03-08 15:17:06 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-03-08 15:17:06 +0100 |
commit | 701403902817636f8825515cc08dbd05e7aeb42d (patch) | |
tree | 8773557353dddbed9f72c63d38b0903bfbe1100e /info2html | |
parent | fc2bfc27ec69ac45f68831e5ffc07b834b8895c2 (diff) |
Add HTML5 doctype
Diffstat (limited to 'info2html')
-rwxr-xr-x | info2html | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -82,6 +82,7 @@ sub DieFileNotFound{ local($FileName) = @_; #-- TEXT : error message if a file could not be opened print <<"EOF"; +<!doctype html> <html><head><title>Info Files - Error Message</title> $BOTS_STAY_AWAY $CSS_STYLE @@ -447,6 +448,7 @@ sub PrintHeader{ ; print <<"EOF"; +<!doctype html> <html><head><title>Info: ($BaseInfoFile) $LinkList[1]</title> $CSS_STYLE $HTML_HEAD_STUFF</head><body class='node'> @@ -496,6 +498,7 @@ sub PrintFooter{ sub ReplyNotFoundMessage{ local($FileName,$Tag) = @_; print <<"EOF"; +<!doctype html> <html><head><title>Info Files - Error Message</title> $BOTS_STAY_AWAY $CSS_STYLE |