diff --git a/src/index.html b/src/index.html index 45f1bed..0b5d08e 100644 --- a/src/index.html +++ b/src/index.html @@ -7,9 +7,7 @@ Document -

jsoncv

- -
+
diff --git a/src/main.js b/src/main.js index d5cd7c2..db6c721 100644 --- a/src/main.js +++ b/src/main.js @@ -1,5 +1,7 @@ +import * as exampleData from '../data/rxresume-converted.json'; import { applyThemeTo } from './themer'; -const elCV = document.querySelector('#cv-container') +const elCV = document.querySelector('.cv-container') -applyThemeTo('default', {}, elCV) + +applyThemeTo('default', exampleData, elCV) diff --git a/src/templates/reorx/index.ejs b/src/templates/reorx/index.ejs index ff33980..dea85d5 100644 --- a/src/templates/reorx/index.ejs +++ b/src/templates/reorx/index.ejs @@ -1 +1,40 @@ -

reorx

+ +

<%= basics.name %>

+

<%= basics.summary %>

+
+ <%= basics.email %> | <%= basics.phone %> +
+ + +
+

Educations

+ <% for (const item of education) { %> +
+

<%= item.institution %>

+

<%= item.url %>

+

<%= item.area %>

+

<%= item.score %>

+

<%= item.startDate %> - <%= item.endDate %>

+
+ <% } %> +
+ + +
+

+
+ + +
+

Projects

+
+ + +
+

Side-projects

+
+ + +
+

Skills

+
diff --git a/src/templates/reorx/index.scss b/src/templates/reorx/index.scss index 742793f..1560230 100644 --- a/src/templates/reorx/index.scss +++ b/src/templates/reorx/index.scss @@ -1,7 +1,5 @@ -body { - background-color: green; +.cv-container { + font-size: 14px; + font-family: system-ui, sans-serif; - div { - color: red; - } }