Author: dashorst Date: Tue Jul 20 20:37:55 2010 New Revision: 965994 URL: http://svn.apache.org/viewvc?rev=965994&view=rev Log: Added directory
Added: wicket/common/site/trunk/_layouts/ wicket/common/site/trunk/_layouts/default.html wicket/common/site/trunk/_layouts/post.html Added: wicket/common/site/trunk/_layouts/default.html URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_layouts/default.html?rev=965994&view=auto ============================================================================== --- wicket/common/site/trunk/_layouts/default.html (added) +++ wicket/common/site/trunk/_layouts/default.html Tue Jul 20 20:37:55 2010 @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<html> +<head> + <title>Apache Wicket - {{page.title}}</title> + + <link rel="stylesheet" href="/css/screen.css" type="text/css" media="screen" /> + + <!--[if lt ie 7]> + <link rel="stylesheet" href="/css/ie.css" type="text/css" media="screen" /> + <![endif]--> + <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" /> + <link rel="alternate" type="application/atom+xml" href="/atom.xml" /> + <meta http-equiv="content-type" content="text/html;charset=utf-8" /> +</head> +<body> +<div id="container"> + <div id="content"> + {% include header.html %} + {% include navigation.html %} + <div id="contentbody"> + <h1>{{ page.title }}</h1> + {{ content }} + </div> + <div id="clearer"></div> + {% include footer.html %} + </div> +</div> +</body> +</html> Added: wicket/common/site/trunk/_layouts/post.html URL: http://svn.apache.org/viewvc/wicket/common/site/trunk/_layouts/post.html?rev=965994&view=auto ============================================================================== --- wicket/common/site/trunk/_layouts/post.html (added) +++ wicket/common/site/trunk/_layouts/post.html Tue Jul 20 20:37:55 2010 @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<html> +<head> + <title>Apache Wicket - {{page.title}}</title> + + <link rel="stylesheet" href="/css/screen.css" type="text/css" media="screen" /> + + <!--[if lt ie 7]> + <link rel="stylesheet" href="/css/ie.css" type="text/css" media="screen" /> + <![endif]--> + <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" /> + <link rel="alternate" type="application/atom+xml" href="/atom.xml" /> + <meta http-equiv="content-type" content="text/html;charset=utf-8" /> +</head> +<body> +<div id="container"> + <div id="content"> + {% include header.html %} + {% include navigation.html %} + <div id="contentbody"> + <h1>{{ page.title }}</h1> + {{ content }} + </div> + <div id="clearer"></div> + {% include footer.html %} + </div> +</div> +</body> +</html>