bliper

static html page generation in perl
git clone git://git.2f30.org/bliper
Log | Files | Refs | README | LICENSE

commit 7ae396ec3a28659c9859bad1bf19c3c065f34314
parent 50163d20e721e344d637814d3d92e91ad7af1954
Author: cipher <haris@2f30.org>
Date:   Thu, 15 May 2014 16:12:24 +0300

Fix utf8. Missing " in header

Diffstat:
Mtemplate/article-top | 2+-
Mtemplate/main-top | 2+-
Mtemplate/page-top | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/template/article-top b/template/article-top @@ -1,7 +1,7 @@ <!DOCTYPE HTML> <html> <head> - <meta charset=utf-8"> + <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>perl test</title> <link href="style.css" rel="stylesheet" type="text/css" /> diff --git a/template/main-top b/template/main-top @@ -1,7 +1,7 @@ <!DOCTYPE HTML> <html> <head> - <meta charset=utf-8"> + <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>perl test</title> <link href="style.css" rel="stylesheet" type="text/css" /> diff --git a/template/page-top b/template/page-top @@ -1,7 +1,7 @@ <!DOCTYPE HTML> <html> <head> - <meta charset=utf-8"> + <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>perl test</title> <link href="style.css" rel="stylesheet" type="text/css" />