Initial resume, organize partials

This commit is contained in:
2019-07-30 00:00:43 -04:00
parent c164340493
commit 5dc495e825
28 changed files with 298 additions and 78 deletions

View File

@@ -1,4 +1,4 @@
{{ partial "header.html" . }}
{{ partial "base/header.html" . }}
<main role="main" class="page-not-found">
@@ -13,4 +13,4 @@
</main>
{{ partial "footer.html" . }}
{{ partial "base/footer.html" . }}

View File

@@ -1,17 +1,17 @@
{{ partial "header.html" . }}
{{ partial "base/header.html" . }}
{{ partial "site-title.html" . }}
{{ partial "base/site-title.html" . }}
{{ partial "nav-bar.html" . }}
{{ partial "base/nav-bar.html" . }}
{{ partial "base16-logo.html" . }}
{{ partial "base/base16-logo.html" . }}
<main role="main" class="article-list">
<h1 class="list-title">{{ .Title }}</h1>
{{ range .Data.Pages }}
{{ partial "article-list-item.html" . }}
{{ partial "home/article-list-item.html" . }}
{{ end }}
</main>
{{ partial "footer.html" . }}
{{ partial "base/footer.html" . }}

View File

@@ -1,13 +1,13 @@
{{ partial "header.html" . }}
{{ partial "base/header.html" . }}
{{ partial "site-title.html" . }}
{{ partial "base/site-title.html" . }}
{{ partial "nav-bar.html" . }}
{{ partial "base/nav-bar.html" . }}
{{ partial "base16-logo.html" . }}
{{ partial "base/base16-logo.html" . }}
<main role="main" class="article">
{{ partial "article.html" . }}
{{ partial "base/article.html" . }}
</main>
{{ partial "footer.html" . }}
{{ partial "base/footer.html" . }}

View File

@@ -1,13 +1,13 @@
{{ partial "header.html" . }}
{{ partial "base/header.html" . }}
{{ partial "site-title.html" . }}
{{ partial "base/site-title.html" . }}
{{ partial "nav-bar.html" . }}
{{ partial "base/nav-bar.html" . }}
{{ partial "base16-logo.html" . }}
{{ partial "base/base16-logo.html" . }}
<div id="homepage">
{{ partial "about.html" . }}
{{ partial "home/about.html" . }}
</div>
{{ partial "footer.html" . }}
{{ partial "base/footer.html" . }}

View File

@@ -5,7 +5,7 @@
{{ if not .Page.Date.IsZero }}
<!-- <span class="key">published </span> -->
<span class="val" id="content"><time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 02, 2006" }}</time></span>
<span class="val" id="content"><time id="publish-date" itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 02, 2006" }}</time></span>
{{ end }}
{{ with .Params.categories }}

View File

@@ -12,6 +12,7 @@
{{ .Hugo.Generator }}
<meta name="google-site-verification" content="3aZhrY5bFgQY0HY2DNNUhbkuIfVEcwkrQHnbJd8jCCQ" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="http://livejs.com/live.js" charset="utf-8"></script>
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700" type="text/css"> -->
<link rel='stylesheet' href='//cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack-subset.css'>
<!-- <link rel="stylesheet" href="https://meyerweb.com/eric/tools/css/reset/reset.css" type="text/css" media="all" /> -->

View File

@@ -7,5 +7,5 @@
target="_blank">FOSS/FLOSS</a>.
</p>
{{ partial "me-equation.html" . }}
{{ partial "home/me-equation.html" . }}
</div>

View File

@@ -1,8 +1,15 @@
{{ partial "header.html" . }}
{{ partial "base/header.html" . }}
{{ partial "site-title.html" . }}
{{ partial "base/site-title.html" . }}
{{ partial "base16-logo.html" . }}
{{ partial "base/base16-logo.html" . }}
<div id="resume">
{{ .Content }}
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,2 @@
{{ $_hugo_config := `{ "version": 1 }` }}
{{ .Inner }}

View File

@@ -0,0 +1,4 @@
{{ $_hugo_config := `{ "version": 1 }` }}
<div class="project-details">
{{ .Inner | markdownify }}
</div>

View File

@@ -0,0 +1,2 @@
<h2 class="project-title"><a href="{{ .Get "url" }}" target="_blank">{{ .Get "name" }}</a></h2>
<p class="project-date">{{ .Get "date" }}</p>

View File

@@ -0,0 +1,4 @@
<div id="{{ .Get 0 }}">
<h1 class="section-header">{{ .Get 0 | title }}</h1>
{{ .Inner }}
</div>