Author: hartmannathan
Date: Sun Jan 12 04:29:20 2020
New Revision: 1872637
URL: http://svn.apache.org/viewvc?rev=1872637&view=rev
Log:
[On the staging-ng branch] Update TEMPLATE (work in progress)
* TEMPLATE
Change DOCTYPE and html tags to HTML5 style. See
https://www.w3.org/QA/2002/04/valid-dtd-list.html.
Add meta "viewport" for mobile friendly viewing. See
https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag
Add the various stylesheet, icon, and theme color tags.
Add a server side include for /site-footer.html (which doesn't exist
yet).
Modified:
subversion/site/staging-ng/TEMPLATE
Modified: subversion/site/staging-ng/TEMPLATE
URL:
http://svn.apache.org/viewvc/subversion/site/staging-ng/TEMPLATE?rev=1872637&r1=1872636&r2=1872637&view=diff
==============================================================================
--- subversion/site/staging-ng/TEMPLATE (original)
+++ subversion/site/staging-ng/TEMPLATE Sun Jan 12 04:29:20 2020
@@ -1,12 +1,19 @@
-<!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">
+<!DOCTYPE html>
+<html>
<head>
+<meta charset="UTF-8">
+<meta http-equiv="x-ua-compatible" content="ie=edge">
+<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Apache Subversion</title>
-<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
-<style type="text/css">
- @import url("/style/site.css");
-</style>
+<meta name="description" content="">
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<link rel="manifest" href="site.webmanifest">
+<link rel="apple-touch-icon" href="/icon.png">
+<link rel="icon" type="image/png" href="/icon.png">
+<link rel="stylesheet" href="/style/normalize.css" type="text/css" media="all">
+<link rel="stylesheet" href="/style/main.css" type="text/css" media="all">
+<link rel="stylesheet" href="/style/site.css" type="text/css" media="all">
+<meta name="theme-color" content="#98b0d4">
</head>
<body>
@@ -24,5 +31,6 @@
<!-- ***************** END CONTENT ****************** -->
</div> <!-- #site-content -->
+<!--#include virtual="/site-footer.html" -->
</body>
</html>