some meta clean up. making website more html5 friendly
Nima Fatemi

Nima Fatemi commited on 2014-10-28 09:25:17
Zeige 1 geänderte Dateien mit 16 Einfügungen und 11 Löschungen.

... ...
@@ -6,34 +6,39 @@
6 6
 #use "versions.wmi"
7 7
 #use "navigation.wmi"
8 8
 
9
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
9
+<!DOCTYPE html>
10 10
  <html>
11 11
  <head>
12
+
13
+   <meta charset="utf-8">
14
+   <meta http-equiv="X-UA-Compatible" content="IE=edge">
15
+   <meta name="viewport" content="width=device-width, initial-scale=1">
16
+   <meta name="author" content="The Tor Project, Inc.">
17
+   <meta name="keywords" content="anonymity online, tor, tor project, censorship circumvention, traffic analysis, anonymous communications research">
18
+ 
12 19
    <title>$(TITLE)</title>
13
-  <link rel="shortcut icon" type="image/x-icon" href="$(IMGROOT)/favicon.ico">
20
+   
21
+   <link rel="icon" href="$(IMGROOT)/favicon.ico">
14 22
    <ifneq "$(REDIRECT)" "" "<meta http-equiv="refresh" content="0;url=$(DOCROOT)/$(REDIRECT)">">
15 23
    <ifneq "$(REDIRECT_GLOBAL)" "" "<meta http-equiv="refresh" content="0;url=$(REDIRECT_GLOBAL)">">
16 24
  
17 25
    # begin WML to generate css/js paths 
18
-  <ifneq "$(STYLESHEET)" "" "<link rel="stylesheet" type="text/css" href="$(DOCROOT)/$(STYLESHEET)">">
19
-  <ifeq "$(STYLESHEET)" "" "<link rel="stylesheet" type="text/css" href="$(DOCROOT)/css/master.css">">
26
+   <ifneq "$(STYLESHEET)" "" "<link href="$(DOCROOT)/$(STYLESHEET)" rel="stylesheet">">
27
+   <ifeq "$(STYLESHEET)" "" "<link href="$(DOCROOT)/css/master.css" rel="stylesheet">">
20 28
  
21
-  #<link href="css/master.css" rel="stylesheet" type="text/css">
29
+   #<link href="css/master.css" rel="stylesheet">
22 30
    <!--[if lte IE 8]>
23
-  <link rel="stylesheet" type="text/css" href="$(DOCROOT)/css/ie8-and-down.css">
31
+   <link href="$(DOCROOT)/css/ie8-and-down.css" rel="stylesheet">
24 32
    <![endif]-->
25 33
    <!--[if lte IE 7]>
26
-  <link rel="stylesheet" type="text/css" href="$(DOCROOT)/css/ie7-and-down.css">
34
+   <link href="$(DOCROOT)/css/ie7-and-down.css" rel="stylesheet">
27 35
    <![endif]-->
28 36
    <!--[if IE 6]>
29
-  <link rel="stylesheet" type="text/css" href="$(DOCROOT)/css/ie6.css">
37
+   <link href="$(DOCROOT)/css/ie6.css" rel="stylesheet">
30 38
    <![endif]-->
31 39
  #  <script language="javascript" type="text/javascript" src="$(DOCROOT)/global.js"></script>
32 40
    # end WML to generate css/js paths 
33 41
  
34
-  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
35
-  <meta name="author" content="The Tor Project, Inc.">
36
-  <meta name="keywords" content="anonymity online, tor, tor project, censorship circumvention, traffic analysis, anonymous communications research">
37 42
 </head>
38 43
 <body>
39 44
 <div id="wrap">
40 45