summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2014-11-10 21:48:07 +0100
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2014-11-10 21:48:07 +0100
commit42348f6a810ed8e87881319866b6e1ccbb17e77d (patch)
treed15365211ed934862048bb3911641830d1cd8c46
parent1e6350b027fe6dc6adff55afb3e9746efc908c7c (diff)
Almost ready to replace the main site!
Applied CSS readability fixes - the font is very small on Windows. Fleshed out header/footer - added support information, better links, etc. Added license page because people like to know the licensing terms.
-rw-r--r--_includes/footer.html4
-rw-r--r--_includes/header.html20
-rw-r--r--license.md21
-rw-r--r--stylesheets/styles.css21
4 files changed, 42 insertions, 24 deletions
diff --git a/_includes/footer.html b/_includes/footer.html
index 5a83239..6eb8358 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -1,7 +1,7 @@
</section>
<footer>
- <p>This project is maintained by <a href="https://github.com/zeux">Arseny Kapoulkine</a></p>
- <p><small>Hosted on GitHub Pages &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
+ <p>Maintained by <a href="https://github.com/zeux">Arseny Kapoulkine</a></p>
+ <p><small>Hosted on GitHub &mdash; Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
</div>
<script src="/javascripts/scale.fix.js"></script>
diff --git a/_includes/header.html b/_includes/header.html
index 398727a..b60cb6c 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -16,13 +16,14 @@
<body>
<div class="wrapper">
<header>
- <h1>pugixml</h1>
+ <a href="/"><h1>pugixml</h1></a>
<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 />
+ Repository:
+ <ul>
+ <li style="list-style-type: none"><a href="https://github.com/zeux/pugixml">github.com/zeux/pugixml</a><br/>
+ <small>Git and Subversion access</small></li>
+ </ul>
Downloads:
<ul>
@@ -35,15 +36,16 @@
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>
+ <small>Read this to start using the library</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>
+ <li><a href="/license.html">License</a></li>
</ul>
- Other:
+ Support:
<ul>
- <li><a href="https://github.com/zeux/pugixml/issues">Issue tracker</a>
- </li>
+ <li><a href="https://github.com/zeux/pugixml/issues">Issue tracker</a></li>
+ <li><a href="mailto:arseny.kapoulkine@gmail.com">E-mail author</a></li>
</ul>
</header>
<section>
diff --git a/license.md b/license.md
new file mode 100644
index 0000000..cf0cae4
--- /dev/null
+++ b/license.md
@@ -0,0 +1,21 @@
+---
+layout: default
+title: License
+---
+
+## License
+
+This library is available to anybody free of charge, under the terms of MIT License:
+
+> Copyright (c) 2006-2014 Arseny Kapoulkine
+>
+> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+>
+> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+>
+> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+This means that you can freely use pugixml in your applications, both open-source and proprietary. If you use pugixml in a product, it is sufficient to add an acknowledgment like this to the product distribution:
+
+> This software is based on pugixml library (http://pugixml.org).
+> pugixml is Copyright (C) 2006-2014 Arseny Kapoulkine.
diff --git a/stylesheets/styles.css b/stylesheets/styles.css
index 12d785c..e635dd7 100644
--- a/stylesheets/styles.css
+++ b/stylesheets/styles.css
@@ -2,8 +2,13 @@
body {
padding:50px;
- font:14px/1.5 Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-weight:300;
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-size: 16px;
+ font-weight: 300;
+}
+
+small {
+ font-size:14px;
}
h1, h2, h3, h4, h5, h6 {
@@ -37,12 +42,6 @@ a {
text-decoration:none;
}
-a small {
- font-size:11px;
- color:#777;
- margin-top:-0.6em;
-}
-
.wrapper {
width:860px;
margin:0 auto;
@@ -58,7 +57,7 @@ blockquote {
code, pre {
font-family:Monaco, Bitstream Vera Sans Mono, Lucida Console, Terminal;
color:#333;
- font-size:12px;
+ font-size:14px;
}
pre {
@@ -110,10 +109,6 @@ section {
padding-bottom:50px;
}
-small {
- font-size:11px;
-}
-
hr {
border:0;
background:#e5e5e5;