Add keywords to jobs and voluneering

This commit is contained in:
Stef Dunlap 2022-07-23 16:56:04 -04:00
parent 54dc08a02c
commit e62fc6b9ca
6 changed files with 30 additions and 9 deletions

8
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "jsonresume-theme-boilerplate", "name": "jsonresume-theme-kindrobot",
"version": "0.1.2", "version": "0.1.3",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "jsonresume-theme-boilerplate", "name": "jsonresume-theme-kindrobot",
"version": "0.1.2", "version": "0.1.3",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"handlebars": "^4.7.7" "handlebars": "^4.7.7"

View File

@ -1,6 +1,6 @@
{ {
"name": "jsonresume-theme-kindrobot", "name": "jsonresume-theme-kindrobot",
"version": "0.1.0", "version": "0.1.3",
"description": "kindrobot's theme for JSON Resume", "description": "kindrobot's theme for JSON Resume",
"author": "Stef Dunlap", "author": "Stef Dunlap",
"repository": { "repository": {

View File

@ -1,5 +1,8 @@
{{#resume.basics}} {{#resume.basics}}
<h1>{{name}}</h1> <h1>{{name}}</h1>
{{#if pronouns}}
<div id="pronouns">({{pronouns}})</div>
{{/if}}
{{#if image}} {{#if image}}
<img class="headshot" src="{{image}}" alt="photo of {{name}}"/> <img class="headshot" src="{{image}}" alt="photo of {{name}}"/>
{{/if}} {{/if}}

View File

@ -46,6 +46,13 @@
{{/each}} {{/each}}
</ul> </ul>
{{/if}} {{/if}}
{{#if keywords.length}}
<ul class="keywords">
{{#each keywords}}
<li>{{.}}</li>
{{/each}}
</ul>
{{/if}}
</div> </div>
{{/each}} {{/each}}
</section> </section>

View File

@ -46,6 +46,13 @@
{{/each}} {{/each}}
</ul> </ul>
{{/if}} {{/if}}
{{#if keywords.length}}
<ul class="keywords">
{{#each keywords}}
<li>{{.}}</li>
{{/each}}
</ul>
{{/if}}
</div> </div>
{{/each}} {{/each}}
</section> </section>

View File

@ -96,6 +96,10 @@ h1 {
font-size: 2.9em; font-size: 2.9em;
white-space: nowrap; white-space: nowrap;
} }
#pronouns {
font-style: italic;
margin-top: -0.5em;
}
h2 { h2 {
font-size: 1.5em; font-size: 1.5em;
} }