moved orbit in from submodule

This commit is contained in:
Don Harper 2021-01-30 09:53:57 -06:00
parent 19da32c6dc
commit 6e9ed98e78
227 changed files with 44365 additions and 0 deletions

View file

@ -0,0 +1,37 @@
<!DOCTYPE html>
{{ partial "lang.html" . }}
<head>
{{ partial "head.html" . }}
</head>
<body>
<div class="wrapper">
{{ partial "sidebar.html" . }}
<div class="main-wrapper">
{{ if .Site.Params.summary.enable }}
{{ partial "summary.html" . }}
{{ end }}
{{ if .Site.Params.experiences.enable }}
{{ partial "experiences.html" . }}
{{ end }}
{{ if .Site.Params.projects.enable }}
{{ partial "projects.html" . }}
{{ end }}
{{ if .Site.Params.skills.enable }}
{{ partial "skills.html" . }}
{{ end }}
</div><!--//main-body-->
</div>
{{ partial "footer.html" . }}
{{ partial "scripts.html" . }}
</body>
</html>