Compare commits
2 commits
da7d98da34
...
db1b7ee5e6
| Author | SHA1 | Date | |
|---|---|---|---|
| db1b7ee5e6 | |||
| 83109656a8 |
7 changed files with 211 additions and 5 deletions
|
|
@ -20,6 +20,22 @@ figure {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#web-resume .post {
|
||||||
|
#contact p {
|
||||||
|
display: grid;
|
||||||
|
grid-gap: .35rem;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
&:last-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#projects > .projects {
|
#projects > .projects {
|
||||||
@media print {
|
@media print {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
|
@ -88,6 +104,28 @@ figure {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#education {
|
||||||
|
.container {
|
||||||
|
padding: 20px;
|
||||||
|
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
|
||||||
|
& > * {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
&:nth-child(odd) {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:nth-child(even) {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
section > h2 {
|
section > h2 {
|
||||||
line-height: 1.0;
|
line-height: 1.0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
90
assets/scss/resume.scss
Normal file
90
assets/scss/resume.scss
Normal file
|
|
@ -0,0 +1,90 @@
|
||||||
|
* {
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
font-optical-sizing: auto;
|
||||||
|
font-variation-settings: "wdth" 100;
|
||||||
|
font-size: 10pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
.noprint {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 13pt;
|
||||||
|
text-align: center;
|
||||||
|
border-bottom: 1px solid gray;
|
||||||
|
padding-bottom: 1em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
h1, p {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-family: "Scope One", serif;
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
font-size: 29pt;
|
||||||
|
margin-bottom: 0.05em;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
margin-top: 0;
|
||||||
|
font-size: 14pt;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#workhistory {
|
||||||
|
& > ul {
|
||||||
|
& > li:last-child {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#contact p {
|
||||||
|
font-size: 10pt;
|
||||||
|
|
||||||
|
display: grid;
|
||||||
|
grid-gap: .35rem;
|
||||||
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
&:last-child {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#projects {
|
||||||
|
li {
|
||||||
|
a {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#education {
|
||||||
|
.container {
|
||||||
|
padding: 20px;
|
||||||
|
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
|
||||||
|
& > * {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
&:nth-child(even) {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -3,7 +3,8 @@ title = "Web Résumé"
|
||||||
post_title = "🧑💻 Dan Jones"
|
post_title = "🧑💻 Dan Jones"
|
||||||
toc = true
|
toc = true
|
||||||
layout = "web-resume"
|
layout = "web-resume"
|
||||||
Description = "Experienced web developer"
|
Description = "Software Engineer and Architect"
|
||||||
|
outputs = ['html','resume']
|
||||||
+++
|
+++
|
||||||
<section id="workhistory">
|
<section id="workhistory">
|
||||||
|
|
||||||
|
|
@ -143,8 +144,14 @@ Description = "Experienced web developer"
|
||||||
|
|
||||||
## Education
|
## Education
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
|
||||||
|
**Bachelor of the Arts - Theater**
|
||||||
|
|
||||||
University of Texas at Austin
|
University of Texas at Austin
|
||||||
|
|
||||||
August 2004 - May 2008
|
August 2004 - May 2008
|
||||||
Bachelor of the Arts - Theater
|
|
||||||
|
</div>
|
||||||
|
|
||||||
</section><!-- /#education -->
|
</section><!-- /#education -->
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,9 @@
|
||||||
---
|
---
|
||||||
id: contact
|
id: contact
|
||||||
---
|
---
|
||||||
|
|
||||||
<span class="location">🏠 Fort Bend, TX 77069</span>
|
<span class="location">🏠 Fort Bend, TX 77069</span>
|
||||||
<span class="phone">📞 +1 (704) 326-1626</span>
|
<span class="phone">📞 +1 (704) 326-1626</span>
|
||||||
<span class="email">📧 [dan@danielrayjones.com](mailto:dan@danielrayjones.com)</span>
|
<span class="email">📧 [dan@danielrayjones.com](mailto:dan@danielrayjones.com)</span>
|
||||||
<span class="web printonly">🌐 https://danielrayjones.com/</span><br/>
|
<span class="web printonly">🌐 https://danielrayjones.com/</span>
|
||||||
<span class="where">📍 Open to remote positions</span>
|
<span class="where">📍 Open to remote positions</span>
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,13 @@ title = "Dan Jones"
|
||||||
theme = "hello-friend-ng"
|
theme = "hello-friend-ng"
|
||||||
enableGitInfo = true
|
enableGitInfo = true
|
||||||
|
|
||||||
|
[outputFormats]
|
||||||
|
|
||||||
|
[outputFormats.resume]
|
||||||
|
mediaType = "text/html"
|
||||||
|
isHTML = true
|
||||||
|
baseName = "dan-jones-resume"
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
homeSubtitle = "Web developer, actor, jack of some trades"
|
homeSubtitle = "Web developer, actor, jack of some trades"
|
||||||
EnableThemeToggle = true
|
EnableThemeToggle = true
|
||||||
|
|
|
||||||
53
layouts/_default/web-resume.resume.html
Normal file
53
layouts/_default/web-resume.resume.html
Normal file
|
|
@ -0,0 +1,53 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<title>{{ .Title }}</title>
|
||||||
|
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Scope+One&display=swap" rel="stylesheet">
|
||||||
|
|
||||||
|
{{ $options := (dict "targetPath" "resume.css" "outputStyle" "compressed" "enableSourceMap" true) }}
|
||||||
|
{{ $style := resources.Get "scss/resume.scss" | css.Sass $options | resources.Fingerprint }}
|
||||||
|
<link rel="stylesheet" href="{{ $style.RelPermalink }}" integrity="{{ $style.Data.Integrity }}">
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<h1>{{ with .Params.post_title }}{{ . | markdownify }}{{ else }}{{ .Title | markdownify }}{{ end }}</h1>
|
||||||
|
{{ with .Params.Description }}<p>{{ . | markdownify }}</p>{{ end }}
|
||||||
|
</header>
|
||||||
|
|
||||||
|
{{ with .Resources.Get "sections/005-contact.md" }}
|
||||||
|
<aside id="{{ .Params.id }}" class="{{ .Params.class }}">
|
||||||
|
{{ .Content }}
|
||||||
|
</aside>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ with .Resources.Get "sections/007-summary.md" }}
|
||||||
|
<aside id="{{ .Params.id }}" class="{{ .Params.class }}">
|
||||||
|
<h2>Objectives</h3>
|
||||||
|
{{ .Content }}
|
||||||
|
</aside>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ with .Resources.Get "sections/010-skills.md" }}
|
||||||
|
<aside id="{{ .Params.id }}" class="{{ .Params.class }}">
|
||||||
|
{{ .Content }}
|
||||||
|
</aside>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
{{ .Content }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ with .Resources.Get "data/projects.yaml" }}
|
||||||
|
<aside id="projects">
|
||||||
|
{{ partial "projects.resume.html" . }}
|
||||||
|
</aside>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
10
layouts/_partials/projects.resume.html
Normal file
10
layouts/_partials/projects.resume.html
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{{ with . | transform.Unmarshal -}}
|
||||||
|
<h2>Selected Open Source Projects</h2>
|
||||||
|
<ul>
|
||||||
|
{{- range $project := . -}}
|
||||||
|
{{- range $slug, $proj := $project }}
|
||||||
|
<li class="project {{ $slug }}"><a href="{{ $proj.url }}">{{ $proj.name }}</a> {{ $proj.desc }}</li>
|
||||||
|
{{- end -}}
|
||||||
|
{{- end }}
|
||||||
|
</ul>
|
||||||
|
{{- end }}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue