diff --git a/src/themes/reorx/index.ejs b/src/themes/reorx/index.ejs index 647931f..5615f8f 100644 --- a/src/themes/reorx/index.ejs +++ b/src/themes/reorx/index.ejs @@ -11,7 +11,12 @@ function linkInDiv(url) { <% if (cv.basics.label) { %>
<%= cv.basics.label %>
<% } %> - <%- linkInDiv(cv.basics.url) %> + <% if (cv.basics.url) { %> +
+ <%- fn.getIconSVG('mdi:link-variant') %> + <%= fn.noSchemaURL(cv.basics.url) %> +
+ <% } %> <% if (cv.basics.summary) { %>
<%- fn.renderMarkdown(cv.basics.summary) %>
<% } %> @@ -115,7 +120,7 @@ function dateRange(item, level) {
<%= item.position %>
<%- dateRange(item, 2) %> -
<%- fn.renderMarkdown(item.summary) %>
+
<%- fn.renderMarkdown(item.summary) %>
<% if (item.highlights && item.highlights.length > 0) { %>
-
<%- fn.renderMarkdown(item.description) %>
+
<%- fn.renderMarkdown(item.description) %>
<% if (item.highlights && item.highlights.length > 0) { %> -
- -
+ <% if (item.highlights.length === 1) { %> +
<%- fn.renderMarkdown(item.highlights[0], true) %>
+ <% } else { %> +
+ +
+ <% } %> <% } %>
<% for (const kw of item.keywords) { %> @@ -176,6 +185,7 @@ function dateRange(item, level) {

Side-projects

+
<% for (const item of cv.sideProjects) { %>
@@ -188,7 +198,7 @@ function dateRange(item, level) { <%= fn.noSchemaURL(item.url) %>
<% } %> -
<%- fn.renderMarkdown(item.description) %>
+
<%- fn.renderMarkdown(item.description) %>
<% if (item.keywords && item.keywords.length > 0) { %>
<% for (const kw of item.keywords) { %> @@ -198,6 +208,7 @@ function dateRange(item, level) { <% } %>
<% } %> +
<% } %> diff --git a/src/themes/reorx/index.scss b/src/themes/reorx/index.scss index 17bb1b9..1aee54a 100644 --- a/src/themes/reorx/index.scss +++ b/src/themes/reorx/index.scss @@ -12,15 +12,15 @@ $lh-p: 1.4; .cv-container { font-size: 14px; font-family: system-ui, sans-serif; +} - a, a:visited, a:active { - color: $color-signature; - text-decoration: none; - } - a:hover { - color: $color-signature; - text-decoration: underline; - } +a, a:visited, a:active { + color: $color-signature; + text-decoration: none; +} +a:hover { + color: $color-signature; + text-decoration: underline; } section { @@ -110,6 +110,9 @@ section { ._ul { text-decoration: underline; } + ._text-dim { + color: $color-text-dim; + } } .basics-section { @@ -118,10 +121,6 @@ section { font-weight: 600; margin: .2em 0 .2em 0; } - .summary { - margin: .8em 0; - line-height: $lh-p; - } .contact { color: $color-text-dim; @@ -135,13 +134,10 @@ section { } } -.education-section { -} - -.work-section { -} - -.skills-section { +.sideprojects-section { + .description p:last-of-type { + margin-bottom: 0; + } } footer {