summaryrefslogtreecommitdiffstats
path: root/header.rb
diff options
context:
space:
mode:
Diffstat (limited to 'header.rb')
-rwxr-xr-xheader.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/header.rb b/header.rb
new file mode 100755
index 0000000..51c3a85
--- /dev/null
+++ b/header.rb
@@ -0,0 +1,24 @@
+def header_bdg()
+ $cgi = CGI.new
+ puts $cgi.header
+
+ html = <<HTML_BDG
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
+ "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
+ <head>
+ <title>BDG — Blagues de Geek</title>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <meta http-equiv="content-language" content="fr" />
+ <meta http-equiv="Pragma" content="no-cache" />
+ <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
+ <meta http-equiv="Expires" content="0" />
+ <link rel="shortcut icon" href="favicon.ico" />
+ <link rel="stylesheet" media="screen" type="text/css" title="Design" href="index.css" />
+ </head>
+ <body>
+HTML_BDG
+ return html
+end \ No newline at end of file