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",
"version": "0.1.2",
"name": "jsonresume-theme-kindrobot",
"version": "0.1.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "jsonresume-theme-boilerplate",
"version": "0.1.2",
"name": "jsonresume-theme-kindrobot",
"version": "0.1.3",
"license": "MIT",
"dependencies": {
"handlebars": "^4.7.7"

View File

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

View File

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

View File

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

View File

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

View File

@ -2,7 +2,7 @@
--sidebar-bg: #222;
}
/* BEGIN RESET CSS
http://meyerweb.com/eric/tools/css/reset/
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
@ -16,8 +16,8 @@ b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
@ -28,7 +28,7 @@ time, mark, audio, video {
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
@ -96,6 +96,10 @@ h1 {
font-size: 2.9em;
white-space: nowrap;
}
#pronouns {
font-style: italic;
margin-top: -0.5em;
}
h2 {
font-size: 1.5em;
}