@enure/jacklin 2.0.8 → 2.1.1
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/package.json +1 -1
- package/template.handlebars +30 -19
package/package.json
CHANGED
package/template.handlebars
CHANGED
|
@@ -28,10 +28,7 @@
|
|
|
28
28
|
main {
|
|
29
29
|
max-width: 800px;
|
|
30
30
|
}
|
|
31
|
-
|
|
32
|
-
margin-top: 48px;
|
|
33
|
-
}
|
|
34
|
-
main > section {
|
|
31
|
+
section {
|
|
35
32
|
margin-top: 36px;
|
|
36
33
|
}
|
|
37
34
|
h1, h2 {
|
|
@@ -101,25 +98,39 @@
|
|
|
101
98
|
.u-nobr {
|
|
102
99
|
break-inside: avoid;
|
|
103
100
|
}
|
|
101
|
+
a {
|
|
102
|
+
text-decoration: none;
|
|
103
|
+
color: inherit;
|
|
104
|
+
}
|
|
104
105
|
</style>
|
|
105
106
|
</head>
|
|
106
107
|
<body>
|
|
107
108
|
<header>
|
|
108
|
-
<
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
<
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
109
|
+
<section>
|
|
110
|
+
<h1>
|
|
111
|
+
{{ basics.name }}
|
|
112
|
+
</h1>
|
|
113
|
+
<ul class="BasicsList">
|
|
114
|
+
<li>
|
|
115
|
+
{{ basics.phone }}
|
|
116
|
+
</li>
|
|
117
|
+
<li>
|
|
118
|
+
<a href="mailto:{{ basics.email }}">
|
|
119
|
+
{{ basics.email }}
|
|
120
|
+
</a>
|
|
121
|
+
</li>
|
|
122
|
+
{{!-- <li>{{ basics.location.address }}</li> --}}
|
|
123
|
+
<li>{{ basics.location.city }}, {{ basics.location.region }} {{!-- basics.location.postalCode --}}</li>
|
|
124
|
+
</ul>
|
|
125
|
+
</section>
|
|
126
|
+
<section>
|
|
127
|
+
<h2>
|
|
128
|
+
{{ basics.label }}
|
|
129
|
+
</h2>
|
|
130
|
+
<p>
|
|
131
|
+
{{ basics.summary }}
|
|
132
|
+
</p>
|
|
133
|
+
</section>
|
|
123
134
|
</header>
|
|
124
135
|
<main>
|
|
125
136
|
<section>
|