Skip to content

Commit 18d31c3

Browse files
committed
major restructure add docs directory
1 parent d211c72 commit 18d31c3

File tree

98 files changed

+30731
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+30731
-0
lines changed

_site.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: "Richard W Morris"
2+
output_dir: docs
23
navbar:
34
title: "Richard W Morris"
45
left:

assets/data_plot-1.png

-62.1 KB
Binary file not shown.

docs/about.html

Lines changed: 316 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,316 @@
1+
<!DOCTYPE html>
2+
3+
<html>
4+
5+
<head>
6+
7+
<meta charset="utf-8" />
8+
<meta name="generator" content="pandoc" />
9+
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
10+
11+
12+
13+
14+
<title>About This Website</title>
15+
16+
<script src="site_libs/header-attrs-2.29/header-attrs.js"></script>
17+
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
18+
<meta name="viewport" content="width=device-width, initial-scale=1" />
19+
<link href="site_libs/bootstrap-3.3.5/css/paper.min.css" rel="stylesheet" />
20+
<script src="site_libs/bootstrap-3.3.5/js/bootstrap.min.js"></script>
21+
<script src="site_libs/bootstrap-3.3.5/shim/html5shiv.min.js"></script>
22+
<script src="site_libs/bootstrap-3.3.5/shim/respond.min.js"></script>
23+
<style>h1 {font-size: 34px;}
24+
h1.title {font-size: 38px;}
25+
h2 {font-size: 30px;}
26+
h3 {font-size: 24px;}
27+
h4 {font-size: 18px;}
28+
h5 {font-size: 16px;}
29+
h6 {font-size: 12px;}
30+
code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}
31+
pre:not([class]) { background-color: white }</style>
32+
<script src="site_libs/navigation-1.1/tabsets.js"></script>
33+
<link href="site_libs/highlightjs-9.12.0/default.css" rel="stylesheet" />
34+
<script src="site_libs/highlightjs-9.12.0/highlight.js"></script>
35+
36+
<style type="text/css">
37+
code{white-space: pre-wrap;}
38+
span.smallcaps{font-variant: small-caps;}
39+
span.underline{text-decoration: underline;}
40+
div.column{display: inline-block; vertical-align: top; width: 50%;}
41+
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
42+
ul.task-list{list-style: none;}
43+
</style>
44+
45+
<style type="text/css">code{white-space: pre;}</style>
46+
<script type="text/javascript">
47+
if (window.hljs) {
48+
hljs.configure({languages: []});
49+
hljs.initHighlightingOnLoad();
50+
if (document.readyState && document.readyState === "complete") {
51+
window.setTimeout(function() { hljs.initHighlighting(); }, 0);
52+
}
53+
}
54+
</script>
55+
56+
57+
58+
59+
60+
61+
62+
63+
64+
<style type = "text/css">
65+
.main-container {
66+
max-width: 940px;
67+
margin-left: auto;
68+
margin-right: auto;
69+
}
70+
img {
71+
max-width:100%;
72+
}
73+
.tabbed-pane {
74+
padding-top: 12px;
75+
}
76+
.html-widget {
77+
margin-bottom: 20px;
78+
}
79+
button.code-folding-btn:focus {
80+
outline: none;
81+
}
82+
summary {
83+
display: list-item;
84+
}
85+
details > summary > p:only-child {
86+
display: inline;
87+
}
88+
pre code {
89+
padding: 0;
90+
}
91+
</style>
92+
93+
94+
<style type="text/css">
95+
.dropdown-submenu {
96+
position: relative;
97+
}
98+
.dropdown-submenu>.dropdown-menu {
99+
top: 0;
100+
left: 100%;
101+
margin-top: -6px;
102+
margin-left: -1px;
103+
border-radius: 0 6px 6px 6px;
104+
}
105+
.dropdown-submenu:hover>.dropdown-menu {
106+
display: block;
107+
}
108+
.dropdown-submenu>a:after {
109+
display: block;
110+
content: " ";
111+
float: right;
112+
width: 0;
113+
height: 0;
114+
border-color: transparent;
115+
border-style: solid;
116+
border-width: 5px 0 5px 5px;
117+
border-left-color: #cccccc;
118+
margin-top: 5px;
119+
margin-right: -10px;
120+
}
121+
.dropdown-submenu:hover>a:after {
122+
border-left-color: #adb5bd;
123+
}
124+
.dropdown-submenu.pull-left {
125+
float: none;
126+
}
127+
.dropdown-submenu.pull-left>.dropdown-menu {
128+
left: -100%;
129+
margin-left: 10px;
130+
border-radius: 6px 0 6px 6px;
131+
}
132+
</style>
133+
134+
<script type="text/javascript">
135+
// manage active state of menu based on current page
136+
$(document).ready(function () {
137+
// active menu anchor
138+
href = window.location.pathname
139+
href = href.substr(href.lastIndexOf('/') + 1)
140+
if (href === "")
141+
href = "index.html";
142+
var menuAnchor = $('a[href="' + href + '"]');
143+
144+
// mark the anchor link active (and if it's in a dropdown, also mark that active)
145+
var dropdown = menuAnchor.closest('li.dropdown');
146+
if (window.bootstrap) { // Bootstrap 4+
147+
menuAnchor.addClass('active');
148+
dropdown.find('> .dropdown-toggle').addClass('active');
149+
} else { // Bootstrap 3
150+
menuAnchor.parent().addClass('active');
151+
dropdown.addClass('active');
152+
}
153+
154+
// Navbar adjustments
155+
var navHeight = $(".navbar").first().height() + 15;
156+
var style = document.createElement('style');
157+
var pt = "padding-top: " + navHeight + "px; ";
158+
var mt = "margin-top: -" + navHeight + "px; ";
159+
var css = "";
160+
// offset scroll position for anchor links (for fixed navbar)
161+
for (var i = 1; i <= 6; i++) {
162+
css += ".section h" + i + "{ " + pt + mt + "}\n";
163+
}
164+
style.innerHTML = "body {" + pt + "padding-bottom: 40px; }\n" + css;
165+
document.head.appendChild(style);
166+
});
167+
</script>
168+
169+
<!-- tabsets -->
170+
171+
<style type="text/css">
172+
.tabset-dropdown > .nav-tabs {
173+
display: inline-table;
174+
max-height: 500px;
175+
min-height: 44px;
176+
overflow-y: auto;
177+
border: 1px solid #ddd;
178+
border-radius: 4px;
179+
}
180+
181+
.tabset-dropdown > .nav-tabs > li.active:before, .tabset-dropdown > .nav-tabs.nav-tabs-open:before {
182+
content: "\e259";
183+
font-family: 'Glyphicons Halflings';
184+
display: inline-block;
185+
padding: 10px;
186+
border-right: 1px solid #ddd;
187+
}
188+
189+
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
190+
content: "\e258";
191+
font-family: 'Glyphicons Halflings';
192+
border: none;
193+
}
194+
195+
.tabset-dropdown > .nav-tabs > li.active {
196+
display: block;
197+
}
198+
199+
.tabset-dropdown > .nav-tabs > li > a,
200+
.tabset-dropdown > .nav-tabs > li > a:focus,
201+
.tabset-dropdown > .nav-tabs > li > a:hover {
202+
border: none;
203+
display: inline-block;
204+
border-radius: 4px;
205+
background-color: transparent;
206+
}
207+
208+
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
209+
display: block;
210+
float: none;
211+
}
212+
213+
.tabset-dropdown > .nav-tabs > li {
214+
display: none;
215+
}
216+
</style>
217+
218+
<!-- code folding -->
219+
220+
221+
222+
223+
</head>
224+
225+
<body>
226+
227+
228+
<div class="container-fluid main-container">
229+
230+
231+
232+
233+
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
234+
<div class="container">
235+
<div class="navbar-header">
236+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-bs-toggle="collapse" data-target="#navbar" data-bs-target="#navbar">
237+
<span class="icon-bar"></span>
238+
<span class="icon-bar"></span>
239+
<span class="icon-bar"></span>
240+
</button>
241+
<a class="navbar-brand" href="index.html">Richard W Morris</a>
242+
</div>
243+
<div id="navbar" class="navbar-collapse collapse">
244+
<ul class="nav navbar-nav">
245+
<li>
246+
<a href="index.html">Home</a>
247+
</li>
248+
<li>
249+
<a href="about.html">About</a>
250+
</li>
251+
</ul>
252+
<ul class="nav navbar-nav navbar-right">
253+
254+
</ul>
255+
</div><!--/.nav-collapse -->
256+
</div><!--/.container -->
257+
</div><!--/.navbar -->
258+
259+
<div id="header">
260+
261+
262+
263+
<h1 class="title toc-ignore">About This Website</h1>
264+
265+
</div>
266+
267+
268+
<p>More about this website.</p>
269+
270+
271+
272+
273+
</div>
274+
275+
<script>
276+
277+
// add bootstrap table styles to pandoc tables
278+
function bootstrapStylePandocTables() {
279+
$('tr.odd').parent('tbody').parent('table').addClass('table table-condensed');
280+
}
281+
$(document).ready(function () {
282+
bootstrapStylePandocTables();
283+
});
284+
285+
286+
</script>
287+
288+
<!-- tabsets -->
289+
290+
<script>
291+
$(document).ready(function () {
292+
window.buildTabsets("TOC");
293+
});
294+
295+
$(document).ready(function () {
296+
$('.tabset-dropdown > .nav-tabs > li').click(function () {
297+
$(this).parent().toggleClass('nav-tabs-open');
298+
});
299+
});
300+
</script>
301+
302+
<!-- code folding -->
303+
304+
305+
<!-- dynamically load mathjax for compatibility with self-contained -->
306+
<script>
307+
(function () {
308+
var script = document.createElement("script");
309+
script.type = "text/javascript";
310+
script.src = "https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";
311+
document.getElementsByTagName("head")[0].appendChild(script);
312+
})();
313+
</script>
314+
315+
</body>
316+
</html>
10.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)