84 lines
3.2 KiB
HTML
84 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>cereal Docs{% if page.title }%} - {{page.title}}{% endif %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<link href="{{ site.baseurl }}/assets/css/pygments.css" rel="stylesheet">
|
|
<link href="{{ site.baseurl }}/assets/css/bootstrap.min.css" rel="stylesheet">
|
|
<style type="text/css">
|
|
body {
|
|
padding-top: 60px;
|
|
padding-bottom: 40px;
|
|
}
|
|
.sidebar-nav {
|
|
padding: 9px 0;
|
|
}
|
|
|
|
@media (max-width: 980px) {
|
|
/* Enable use of floated navbar text */
|
|
.navbar-text.pull-right {
|
|
float: none;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
}
|
|
</style>
|
|
<link href="{{ site.baseurl }}/assets/css/bootstrap-responsive.min.css" rel="stylesheet">
|
|
|
|
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
|
|
<!--[if lt IE 9]>
|
|
<script src="{{ site.baseurl }}/assets/js/html5shiv.js"></script>
|
|
<![endif]-->
|
|
|
|
<!-- Fav and touch icons -->
|
|
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}/assets/ico/apple-touch-icon-144-precomposed.png">
|
|
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ site.baseurl }}/assets/ico/apple-touch-icon-114-precomposed.png">
|
|
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ site.baseurl }}/assets/ico/apple-touch-icon-72-precomposed.png">
|
|
<link rel="apple-touch-icon-precomposed" href="{{ site.baseurl }}/assets/ico/apple-touch-icon-57-precomposed.png">
|
|
<link rel="shortcut icon" href="{{ site.baseurl }}/assets/ico/favicon.png">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container-fluid">
|
|
|
|
|
|
<div class="navbar">
|
|
<div class="navbar-inner">
|
|
<a class="brand" href="{{ site.baseurl }}">cereal</a>
|
|
<ul class="nav">
|
|
<li><a href="{{ site.baseurl }}/index.html">Documentation</a></li>
|
|
<li><a href="{{ site.baseurl }}/assets/doxygen/index.html">Doxygen Docs</a></li>
|
|
<li><a href="https://github.com/USCiLab/cereal">Github</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row-fluid">
|
|
<div class="span3">
|
|
<div class="well sidebar-nav">
|
|
<ul class="nav nav-list">
|
|
<li class="nav-header">Documentation</li>
|
|
<li><a href="index.html">Home</a></li>
|
|
<li><a href="quickstart.html">Quick Start</a></li>
|
|
<li><a href="serialization_archives.html">Serialization Archives</a></li>
|
|
<li><a href="serialization_functions.html">Serialization Functions</a></li>
|
|
<li><a href="pointers.html">Pointers (Smart and Dumb)</a></li>
|
|
<li><a href="inheritance.html">Inheritance</a></li>
|
|
<li><a href="polymorphism.html">Polymorphism</a></li>
|
|
</ul>
|
|
|
|
</div><!--/.well -->
|
|
</div><!--/span-->
|
|
<div class="span7">
|
|
{{content}}
|
|
</div><!--/span-->
|
|
</div><!--/row-->
|
|
</div><!--/.fluid-container-->
|
|
|
|
</body>
|
|
</html>
|