Skip to content

Commit fc33b0d

Browse files
committed
Initial attempt at website re-do.
1 parent d853821 commit fc33b0d

File tree

1 file changed

+78
-18
lines changed

1 file changed

+78
-18
lines changed

index.html

Lines changed: 78 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,82 @@
1-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3-
4-
<html xmlns="http://www.w3.org/1999/xhtml">
1+
<!DOCTYPE html>
2+
<html lang="en">
53
<head>
6-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7-
<meta http-equiv="refresh" content="0; URL=latest/index.html" />
4+
<title>cpp-netlib: The C++ Network Library</title>
5+
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen">
6+
<link href="bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
87
</head>
9-
10-
<body>
11-
Automatic redirection failed, please go to <a href "latest/index.html">index.html</a>.
12-
13-
<div class="copyright-footer">
14-
<p>Copyright 2012 Glyn Matthews</p>
15-
16-
<p>Distributed under the Boost Software License, Version 1.0. (See
17-
accompanying file <a href="LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy
18-
at <a href=
19-
"http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</a>)</p>
20-
</div>
8+
<body data-spy="scroll" data-target=".cpp-netlib-docs-sidebar">
9+
<header class="jumbotron subhead">
10+
<div class="container">
11+
<h1>The C++ Network Library Project</h1>
12+
<p class="lead">A collection of open-source libraries for high level network programming.</p>
13+
</div>
14+
</header>
15+
<div class="container">
16+
<div class="row">
17+
<div class="span3 cpp-netlib-docs-sidebar">
18+
<ul class="nav nav-list affix-top">
19+
<li><a href="#overview"><i class="icon-chevron-right"></i>Overview</a></li>
20+
<li><a href="#download"><i class="icon-chevron-right"></i>Download</a></li>
21+
<li><a href="#documentation"><i class="icon-chevron-right"></i>Documentation</a></li>
22+
<li><a href="#support"><i class="icon-chevron-right"></i>Support</a></li>
23+
<li><a href="#policies"><i class="icon-chevron-right"></i>Project Policies</a></li>
24+
</ul>
25+
</div>
26+
<div class="span9">
27+
<section id="overview">
28+
<div class="page-header">
29+
<h1>Overview</h1>
30+
</div>
31+
<p>The project aims to build upon the latest C++ standard (currently C++11) to provide easy to use libraries for network programming. We use the latest compiler versions and features with an eye on pushing the boundaries on leveraging what's available in C++.</p>
32+
<p>Currently the library contains an HTTP client and server implementation, a stand-alone URI library, a network message framework, and some concurrency tools.</p>
33+
<p>The project welcomes contributions from people interested in joining the effort. See the section on <a href="#policies">Project Policies</a> for more information on getting involved.</p>
34+
</section>
35+
<section id="download">
36+
<div class="page-header">
37+
<h1>Download</h1>
38+
</div>
39+
<p>You can download latest and previous releases of the library from our Github download page. <a href="https://github.com/cpp-netlib/cpp-netlib/downloads" class="btn btn-primary">Download</a></p>
40+
</section>
41+
<section id="documentation">
42+
<div class="page-header">
43+
<h1>Documentation</h1>
44+
</div>
45+
<p>We make the documentation for supported releases of the library available through the following links.</p>
46+
<ul>
47+
<li><a href="0.9.4/index.html">0.9.4</a> &mdash; current stable release.</li>
48+
<li><a href="0.8/index.html">0.8</a> &mdash; previous stable (unsupported) release.</li>
49+
</ul>
50+
</section>
51+
<section id="support">
52+
<div class="page-header">
53+
<h1>Support</h1>
54+
</div>
55+
<p>We offer two avenues of support for user issues, depending on what kind of issues you're encountering.</p>
56+
<h2>Reporting Bugs</h2>
57+
<p>If you're using the library and would like to report issues with the library, please file your bug reports and support requests in the official issue tracker.</p>
58+
<p><a href="https://github.com/cpp-netlib/cpp-netlib/issues" class="btn btn-danger">File Bugs</a></p>
59+
<h2>Developer Support</h2>
60+
<p>If you're interested in contributing to the development or if you have questions directly involving the implementation or for general discussion of the project, you can subscribe to and discuss with us through the developers mailing list.</p>
61+
<p><a href="https://groups.google.com/forum/?fromgroups#!forum/cpp-netlib" class="btn btn-success">Discussion Group</a></p>
62+
</section>
63+
<section id="policies">
64+
<div class="page-header">
65+
<h1>Project Policies</h1>
66+
</div>
67+
<p>The project welcomes contributors and starting with 2013, we've resolved to document as much of the policies we follow in the project as we can. Please follow the links below for more information.</p>
68+
<ul>
69+
<li><a href="process.html">Development Process</a></li>
70+
<li><a href="style-guide.html">Style Guide</a></li>
71+
<li><a href="proposals.html">Proposing New Libraries</a></li>
72+
</ul>
73+
</section>
74+
</div>
75+
</div>
76+
<footer class="footer">
77+
<p><small>Copyright 2012 Dean Michael Berris; Glyn Matthews; Google, Inc. -- Distributed under the Boost Software License, Version 1.0. (See accompanying file <a href="LICENSE_1_0.txt">LICENSE_1_0.txt</a> or copy at <a href="http://www.boost.org/LICENSE_1_0.txt">http://www.boost.org/LICENSE_1_0.txt</a></small></p>
78+
</footer>
79+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
80+
<script src="bootstrap/js/bootstrap.min.js"></script>
2181
</body>
2282
</html>

0 commit comments

Comments
 (0)