diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-11-10 11:27:10 +0100 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-11-10 11:27:10 +0100 |
commit | 806169f2550934199890acc4950bc5552565b980 (patch) | |
tree | 3d71dee2ebc78377aecefa026a85ba648f9c84f0 /_includes | |
parent | 485d87b5e0189cc695f18973dcc84f9f57d5b6f9 (diff) |
Initial Jekyll content that tries to mirror the old site.
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/footer.html | 19 | ||||
-rw-r--r-- | _includes/header.html | 49 |
2 files changed, 68 insertions, 0 deletions
diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..5a83239 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,19 @@ + </section> + <footer> + <p>This project is maintained by <a href="https://github.com/zeux">Arseny Kapoulkine</a></p> + <p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p> + </footer> + </div> + <script src="/javascripts/scale.fix.js"></script> + <script type="text/javascript"> + var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); + document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); + </script> + <script type="text/javascript"> + try { + var pageTracker = _gat._getTracker("UA-954596-3"); + pageTracker._trackPageview(); + } catch(err) {} + </script> +</body> +</html> 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> |