diff options
Diffstat (limited to '_includes/header.html')
| -rw-r--r-- | _includes/header.html | 49 | 
1 files changed, 49 insertions, 0 deletions
| diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..398727a --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,49 @@ +<!doctype html> +<html> +<head> +	<meta charset="utf-8"> +	<meta http-equiv="X-UA-Compatible" content="chrome=1"> +	<title>pugixml.org - {{ page.title }}</title> + +	<link rel="stylesheet" href="/stylesheets/styles.css"> +	<link rel="stylesheet" href="/stylesheets/pygment_trac.css"> +	<link rel="alternate" type="application/rss+xml" title="RSS" href="/feed/">	 +	<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> +    <!--[if lt IE 9]> +    <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> +    <![endif]--> +</head> +<body> +	<div class="wrapper"> +		<header> +			<h1>pugixml</h1> +			<p>Light-weight, simple and fast XML parser for C++ with XPath support</p> + +			Repository: <small><a href="https://github.com/zeux/pugixml">https://github.com/zeux/pugixml</a></small><br /> +			License: <small>MIT</small><br /> + +			<br /> + +			Downloads: +			<ul> +			<li><a href="http://github.com/zeux/pugixml/releases/download/v{{site.version}}/pugixml-{{site.version}}.zip">pugixml-{{site.version}}.zip</a><br/> +			<small>398 Kb, Windows line endings</small></li> +			<li><a href="http://github.com/zeux/pugixml/releases/download/v{{site.version}}/pugixml-{{site.version}}.tar.gz">pugixml-{{site.version}}.tar.gz</a><br/> +			<small>369 Kb, Unix line endings</small></li> +			</ul> + +			Documentation: +			<ul> +			<li><a href="http://cdn.rawgit.com/zeux/pugixml/v{{site.version}}/docs/quickstart.html">Quick-start guide</a><br/> +			<small>Read this to start using the library quickly</small></li> +			<li><a href="http://cdn.rawgit.com/zeux/pugixml/v{{site.version}}/docs/manual.html">Complete reference manual</a><br/> +			<small>Read this for full library reference</small></li> +			</ul> + +			Other: +			<ul> +			<li><a href="https://github.com/zeux/pugixml/issues">Issue tracker</a> +			</li> +			</ul> +		</header> +		<section> | 
