Skip to content

feature/#245 review the template in markdown and check all the fields #313

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: feature/develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,24 +1,31 @@
<%_ if (experienceCollection && experienceCollection.length > 0 && experienceCollection !== 'undefined') { -%>
---

### EXPERIENCIA / CARRERA
<%_ if (experienceCollection && experienceCollection !== 'undefined') { -%>
<%_ for (const job of experienceCollection) { -%>
- #### <%- job.name %>
<%_ if (job.type && job.type !== 'undefined' ) { -%>
- **Tipo de Organización:** <%- job.type %>
<%_ } -%>
<%_ if (job.description && job.description !== 'undefined' ) { -%>
- **Descripción:** <%- job.description %>
- **Roles dentro de la empresa:**
<%_ } -%>
<%_ if (job.roles && job.roles !== 'undefined' ) { -%>
- **Roles dentro de la empresa:**
<%_ for (const role of job.roles) { -%>
<%_ if (role.name && role.name !== 'undefined' ) { -%>
- **<%= role.name %>**
<%_ } -%>
- **Duración:** <%= role.startDate %> - <%= role.finishDate ?? 'Actualidad' %>
- **Retos:**
<%_ if (role.challenges && role.challenges !== 'undefined' ) { -%>
- **Retos:**
<%_ for (const challenge of role.challenges) { -%>
<%_ if (challenge.description && challenge.description !== 'undefined') { -%>
- <%= challenge.description %>
<%_ } -%>
<%_ } -%>
<%_ } -%>
<%_ } -%>
<%_ } -%>
<%_ } -%>
<%_ } -%>

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<%_ if (hardSkillsCollection && hardSkillsCollection.length > 0 && hardSkillsCollection !== 'undefined') { -%>
---

### HARD SKILLS

<%_ if (hardSkillsCollection && hardSkillsCollection !== 'undefined') { -%>
<%- hardSkillsCollection.map(element => element.skill.name).join(' / ') %>
<%_ } -%>
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<%_ if (languageCollection && languageCollection.length > 0 && languageCollection !== 'undefined') { -%>
---

### LENGUAJE / NIVEL

<%_ if (languageCollection && languageCollection !== 'undefined') { -%>
<%_ for (const language of languageCollection) { -%>
#### <%- language.name %>

<%_ if (language.level && language.level !== 'undefined') { -%>
<%- language.level %>

<%_ } -%>
<%_ } -%>
<%_ } -%>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@

---

<%_ if (profile?.description) { -%>
### Presentación
<%= profile?.description %>
<%_ } -%>

<%_ if (profile?.relevantLinks && profile?.relevantLinks.length > 0) { -%>
---

### Mis enlaces
<%_ if (profile?.relevantLinks) { -%>
<%_ for (const link of profile?.relevantLinks) { -%>
<%_ if (link.type === 'linkedin') { -%>
- ![<%= link.type -%>](https://raw.githubusercontent.com/Lemoncode/manfred-export-app/main/media/linkedin.svg) [<%= link.type -%>](<%= link.URL -%>)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<%_ if (softSkillsCollection && softSkillsCollection.length > 0 && softSkillsCollection !== 'undefined') { -%>
---

### SOFT SKILLS

<%_ if (softSkillsCollection && softSkillsCollection !== 'undefined') { -%>
<%- softSkillsCollection.map(element => element.skill.name).join(' / ') %>
<%_ } -%>
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<%_ if (studiesCollection && studiesCollection.length > 0 && studiesCollection !== 'undefined') { -%>
---

### EDUCACIÓN

<%_ if (studiesCollection && studiesCollection !== 'undefined') { -%>
<%_ for (const study of studiesCollection) { -%>
#### <%= study?.name %>
<%_ if ( study?.description ) { -%>
Expand All @@ -17,16 +17,14 @@
- **Grado obtenido:** <%= study.degreeAchieved ? "No obtenido" : "Obtenido"%>
<%_ } -%>

<%_ if ( study?.startDate && study?.finishDate ) { -%>
- **Fecha de inicio y finalización:** <%= study.startDate %> - <%= study.finishDate === "" ? "Actualidad" : study.finishDate %>
<%_ } -%>

<%_ if ( study?.institution ) { -%>
<%_ if ( study?.institution.name ) { -%>
- **Nombre de Institución:** <%= study.institution.name %>
<%_ } -%>

<%_ if ( study.institution.location?.region || study.institution.location?.country ) { -%>
- **Ubicación de la Institución:** <%= study.institution.location.region %>, <%= study.institution.location.country %>
- **Ubicación de la Institución:** <%= study.institution.location.region ? ( study.institution.location?.country ? study.institution.location.region + ", " : study.institution.location.region) : "" %><%= study.institution.location.country %>
<%_ } -%>
<%_ } -%>
<%_ } -%>
Expand Down