diff options
author | piernov <piernov@piernov.servegame.org> | 2012-10-19 21:37:53 +0200 |
---|---|---|
committer | piernov <piernov@piernov.servegame.org> | 2012-10-19 21:37:53 +0200 |
commit | 8a03b03fb21e168ace1c5424967d0e6ddbc6c7cc (patch) | |
tree | 34d5e54243c038b43bfa34a934bbad670e2905cf /index.cgi | |
parent | 2df4c55788261bf9efd40bc31047885683f948f6 (diff) | |
download | bdg-8a03b03fb21e168ace1c5424967d0e6ddbc6c7cc.tar.gz bdg-8a03b03fb21e168ace1c5424967d0e6ddbc6c7cc.tar.bz2 bdg-8a03b03fb21e168ace1c5424967d0e6ddbc6c7cc.tar.xz bdg-8a03b03fb21e168ace1c5424967d0e6ddbc6c7cc.zip |
Header déplacé dans header.rb
Diffstat (limited to 'index.cgi')
-rwxr-xr-x | index.cgi | 24 |
1 files changed, 3 insertions, 21 deletions
@@ -10,27 +10,9 @@ db=$db page="Blagues" subpage="Aléatoire" -cgi = CGI.new -puts cgi.header - -puts <<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 +require 'header' +puts header_bdg() +cgi=$cgi require 'menu' puts menu_bdg(page,subpage) |