|
| 1 | +diff --git a/assets/stylesheets/style.css b/assets/stylesheets/style.css |
| 2 | +index c057fb034a0ac238e83b5844f55653ccfbf725ce..333af5de250eaa7f734b4e8d933db573a4864e54 100644 |
| 3 | +--- a/assets/stylesheets/style.css |
| 4 | ++++ b/assets/stylesheets/style.css |
| 5 | +@@ -257,12 +257,16 @@ h4 span:first-child { |
| 6 | + |
| 7 | + @media print { |
| 8 | + a { |
| 9 | +- color: #e32b46 !important; |
| 10 | ++ color: #333 !important; |
| 11 | ++ font-weight: bold; |
| 12 | + } |
| 13 | + |
| 14 | + a[href]:after { |
| 15 | + display: none; |
| 16 | + } |
| 17 | ++ .break-page { |
| 18 | ++ break-after: page; |
| 19 | ++ } |
| 20 | + |
| 21 | + *, |
| 22 | + :after, |
| 23 | +diff --git a/views/partials/about.ejs b/views/partials/about.ejs |
| 24 | +index 35f97fa7b432bf0c68493ed6b73b6f1583161108..70a58506f3ab7f6df5cab3351ebb101683228c62 100644 |
| 25 | +--- a/views/partials/about.ejs |
| 26 | ++++ b/views/partials/about.ejs |
| 27 | +@@ -11,7 +11,7 @@ |
| 28 | + <h3>About</h3> |
| 29 | + </aside> |
| 30 | + <div class="section-content"> |
| 31 | +- <p><%= summary %></p> |
| 32 | ++ <p><%- summary %></p> |
| 33 | + </div> |
| 34 | + </section> |
| 35 | + <% } %> |
| 36 | +diff --git a/views/resume.ejs b/views/resume.ejs |
| 37 | +index 0cbfa1a23383c0e049ef01da84c2b707011b78e9..ab88c76098328778d5b2e10a4a371a18e225bc95 100644 |
| 38 | +--- a/views/resume.ejs |
| 39 | ++++ b/views/resume.ejs |
| 40 | +@@ -41,12 +41,18 @@ |
| 41 | + <%- include('partials/about', { summary: resume.basics.summary }); %> |
| 42 | + <!-- Profiles --> |
| 43 | + <%- include('partials/profiles', { profiles: resume.basics.profiles }); %> |
| 44 | ++ <!-- Education --> |
| 45 | ++ <%- include('partials/education', { education: resume.education }); %> |
| 46 | ++ <!-- Languages --> |
| 47 | ++ <%- include('partials/languages', { languages: resume.languages }); %> |
| 48 | ++ <!-- Interests --> |
| 49 | ++ <%- include('partials/interests', { interests: resume.interests }); %> |
| 50 | ++ <div class="break-page"></div> |
| 51 | ++ |
| 52 | + <!-- Work --> |
| 53 | + <%- include('partials/work', { work: resume.work }); %> |
| 54 | + <!-- Skills --> |
| 55 | + <%- include('partials/skills', { skills: resume.skills }); %> |
| 56 | +- <!-- Education --> |
| 57 | +- <%- include('partials/education', { education: resume.education }); %> |
| 58 | + <!-- Certificates --> |
| 59 | + <%- include('partials/certificates', { certificates: resume.certificates }); %> |
| 60 | + <!-- Awards --> |
| 61 | +@@ -57,12 +63,11 @@ |
| 62 | + <%- include('partials/volunteer', { volunteer: resume.volunteer }); %> |
| 63 | + <!-- Publications --> |
| 64 | + <%- include('partials/publications', { publications: resume.publications }); %> |
| 65 | +- <!-- Languages --> |
| 66 | +- <%- include('partials/languages', { languages: resume.languages }); %> |
| 67 | +- <!-- Interests --> |
| 68 | +- <%- include('partials/interests', { interests: resume.interests }); %> |
| 69 | + <!-- References --> |
| 70 | + <%- include('partials/references', { references: resume.references }); %> |
| 71 | + </div> |
| 72 | ++ <script> |
| 73 | ++ document.getElementById('diffyear').innerHTML = new Date().getFullYear() - 2009; |
| 74 | ++ </script> |
| 75 | + </body> |
| 76 | + </html> |
0 commit comments