jsonresume-theme-engineering-leader 1.0.25 → 1.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -2
- package/package.json +1 -1
- package/style.css +8 -1
package/README.md
CHANGED
|
@@ -1,18 +1,26 @@
|
|
|
1
1
|
# jsonresume-theme-engineering-leader
|
|
2
2
|
|
|
3
|
-
[](https://github.com/sjw7444/jsonresume-theme-engineering-leader/actions/workflows/publish.yml) 
|
|
3
|
+
[](https://github.com/sjw7444/jsonresume-theme-engineering-leader/actions/workflows/publish.yml) [](https://www.npmjs.com/package/jsonresume-theme-engineering-leader)
|
|
4
4
|
|
|
5
5
|
This is the engineering theme for [JSON Resume](http://jsonresume.org/), based off of [jsonresume-theme-engineering](https://github.com/skoenig/jsonresume-theme-engineering) and aims to implement the best practices for [engineering resumes](https://www.reddit.com/r/EngineeringResumes/wiki/index/). The original version was intended for [senior/staff level engineers](https://www.reddit.com/r/EngineeringResumes/wiki/index/#wiki_senior_engineers_and_above_.2810.2B_yoe.29) but this version is modified for CTOs/VPs/Directors.
|
|
6
6
|
|
|
7
7
|
It handles locations of jobs and allows for nested bullets but it renders dates exactly as provided as if they are strings.
|
|
8
8
|
|
|
9
|
+
## Using this theme
|
|
10
|
+
|
|
11
|
+
This theme is available on NPM as [jsonresume-theme-engineering-leader](https://www.npmjs.com/package/jsonresume-theme-engineering-leader) and can be installed by running `npm install jsonresume-theme-engineering-leader`.
|
|
12
|
+
|
|
13
|
+
If you are building your resume from a resume.json file and resume-cli then simply run `resume export --theme engineering-leader`.
|
|
14
|
+
|
|
15
|
+
## Example Resume
|
|
16
|
+
|
|
9
17
|
<p align="center">
|
|
10
18
|
<kbd>
|
|
11
19
|
<img src="https://github.com/sjw7444/jsonresume-theme-engineering-leader/blob/main/examples/example-resume.png?raw=true" alt="Richard Hendriks Resume"/>
|
|
12
20
|
</kbd>
|
|
13
21
|
</p>
|
|
14
22
|
|
|
15
|
-
## Getting started
|
|
23
|
+
## Getting started with Development
|
|
16
24
|
|
|
17
25
|
To get started with theme development, this is what you'll need:
|
|
18
26
|
|
package/package.json
CHANGED
package/style.css
CHANGED
|
@@ -37,13 +37,19 @@ a {
|
|
|
37
37
|
color: black;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
+
p {
|
|
41
|
+
margin-block-start: 0;
|
|
42
|
+
margin-block-end: 0;
|
|
43
|
+
}
|
|
44
|
+
|
|
40
45
|
.item {
|
|
41
|
-
margin-top:
|
|
46
|
+
margin-top: 1.5em;
|
|
42
47
|
}
|
|
43
48
|
|
|
44
49
|
.item>.item-header {
|
|
45
50
|
float: left;
|
|
46
51
|
display: block;
|
|
52
|
+
margin-bottom: .5em;
|
|
47
53
|
}
|
|
48
54
|
|
|
49
55
|
.item>.item-header>.item-header-title {
|
|
@@ -59,6 +65,7 @@ a {
|
|
|
59
65
|
.item>.item-header>.item-header-title>.location {
|
|
60
66
|
font-weight: normal;
|
|
61
67
|
white-space: nowrap;
|
|
68
|
+
font-size: 11px;
|
|
62
69
|
}
|
|
63
70
|
|
|
64
71
|
.item>.item-details {
|