<%= pd.name[0] %> <%= pd.name[1][0] %>. <%= pd.name[2] %>
<%= pd.phone.region %> (<%= pd.phone.area %>) <%= pd.phone.local %> / <%= pd.email %>
<%= pd.address.street_address %>
<%= pd.address.city %>,
<%= pd.address.state %>
<%= pd.address.postal %>
Organizations / Volunteering
-
<% orgs.forEach((org) => { %>
-
<%= org.name %>
<% if (org.main && org.main.url) { %> <%= org.main.title %> <% } else if (org.main) { %> <%= org.main.title %> <% } %> <% if (org.main && org.main.email) { %> / <%= org.main.email %> <% } %> <% if (org.main.date) { %>
Done <%= org.main.date %> <% } else if (org.main.start) { %>
<%= org.main.start %> - <%= org.main.end || "Present" %> <% } %><%= org.description %>
-
<% org.involvement.forEach((period) => { %>
-
<%= period.description %> <% if (period.supervisor) { %>
Supervised by <%= period.supervisor %> <% } %> <% if (period.date) { %>
Done <%= period.date %> <% } else if (period.start) { %>
<%= period.start %> - <%= period.end || "Present" %> <% } %>
<% }); %>
<% }); %>
-
Education
-
<% education.forEach((school) => { %>
-
<%= school.name %>
<%= school.start || "???" %> - <%= school.end || "Present" %>
<% }); %>
Experience
-
<% jobs.forEach((job) => { %>
-
<%= job.name %>
-
<% job.involvement.forEach((period) => { %>
-
<%= period.description %>
Supervised by <%= period.supervisor %>
<%= period.start || "???" %> - <%= period.end || "Present" %>
<% }); %>
<% }); %>
-