1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Design by Free CSS Templates
http://www.freecsstemplates.org
Released for free under a Creative Commons Attribution 2.5 License
Name : Vertebrata
Description: A two-column, fixed-width design with dark color scheme.
Version : 1.0
Released : 20100423
-->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>{{ page.title }}</title>
<link href="https://rpm.org/stylesheets/style.css" rel="stylesheet" type="text/css" media="screen" />
<link rel="shortcut icon" type="image/x-icon" href="{{ site.baseurl }}/_layouts/favicon.ico">
{% if page.css %}
<link href="{{ site.baseurl }}/assets/css/{{ page.css }}" rel="stylesheet" type="text/css" media="screen" />
{% endif %}
</head>
<body>
<div id="wrapper">
<div id="header">
<a href="https://rpm.org/index.html">
<div id="logo">
</div>
</a>
</div>
<!-- end #header -->
<div id="menu">
<ul>
<li><a href="https://rpm.org/index.html">Home</a></li>
<li><a href="https://rpm.org/documentation.html">Documentation</a></li>
<li><a href="https://rpm.org/download.html">Download</a></li>
<li><a href="https://rpm.org/community.html">Community</a></li>
<li><a href="https://rpm.org/contribute.html">Contribute</a></li>
<li><a href="https://rpm.org/roadmap.html">Roadmap</a></li>
<li><a href="https://rpm.org/about.html">About</a></li>
</ul>
</div>
<!-- end #menu -->
<div id="page">
<div id="page-bgtop">
<div id="page-bgbtm">
<div id="content">
{{ content }}
<div style="clear: both;"> </div>
</div>
<div style="clear: both;"> </div>
</div>
</div>
</div>
<!-- end #page -->
</div>
<div id="footer">
<p>rpm.org</p>
</div>
<!-- end #footer -->
</body>
</html>
|