@enure/jacklin 1.1.1 → 1.1.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/template.handlebars +37 -31
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enure/jacklin",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -12,9 +12,11 @@
12
12
  font-size: 14px;
13
13
  }
14
14
  main {
15
- margin-top: 48px;
16
15
  max-width: 800px;
17
16
  }
17
+ main > section {
18
+ margin-top: 48px;
19
+ }
18
20
  h1,h2 {
19
21
  font-size: 14px;
20
22
  margin: 0;
@@ -73,37 +75,41 @@
73
75
  </p>
74
76
  </header>
75
77
  <main>
76
- <h2>Education</h2>
77
- {{#each education}}
78
- <ul>
79
- <li>{{ this.institution }}</li>
80
- <li>{{ this.area }}</li>
81
- <li>{{ this.studyType }}</li>
82
- </ul>
83
- {{/each}}
84
- <h2>Work History</h2>
85
- <ul class="WorkList">
86
- {{#each work}}
87
- <li class="WorkList-item">
88
- <div class="WorkList-positionAt">
89
- {{this.position}} at {{this.name}}
90
- </div>
91
- <div class="WorkList-dates">
92
- {{this.startDate}} - {{#if this.endDate }}{{this.endDate}}{{/if}}{{#unless this.endDate }}current{{/unless}}
93
- </div>
94
- <div class="WorkList-summary">
95
- {{this.summary}}
96
- </div>
97
- {{#if this.highlights}}
98
- <ul class="WorkList-highlights">
99
- {{#each this.highlights}}
100
- <li class="WorkList-highlight">{{this}}</li>
101
- {{/each}}
102
- </ul>
103
- {{/if}}
104
- </li>
78
+ <section>
79
+ <h2>Education</h2>
80
+ {{#each education}}
81
+ <ul>
82
+ <li>{{ this.institution }}</li>
83
+ <li>{{ this.area }}</li>
84
+ <li>{{ this.studyType }}</li>
85
+ </ul>
105
86
  {{/each}}
106
- </ul>
87
+ </section>
88
+ <section>
89
+ <h2>Work History</h2>
90
+ <ul class="WorkList">
91
+ {{#each work}}
92
+ <li class="WorkList-item">
93
+ <div class="WorkList-positionAt">
94
+ {{this.position}} at {{this.name}}
95
+ </div>
96
+ <div class="WorkList-dates">
97
+ {{this.startDate}} - {{#if this.endDate }}{{this.endDate}}{{/if}}{{#unless this.endDate }}current{{/unless}}
98
+ </div>
99
+ <div class="WorkList-summary">
100
+ {{this.summary}}
101
+ </div>
102
+ {{#if this.highlights}}
103
+ <ul class="WorkList-highlights">
104
+ {{#each this.highlights}}
105
+ <li class="WorkList-highlight">{{this}}</li>
106
+ {{/each}}
107
+ </ul>
108
+ {{/if}}
109
+ </li>
110
+ {{/each}}
111
+ </ul>
112
+ </section>
107
113
  </main>
108
114
  </body>
109
115
  </html>