-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Content & design amendments, following feedback from the ex-KNP crew 💙
- Loading branch information
1 parent
c64828e
commit eb6c2d8
Showing
23 changed files
with
118 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
subtitle = "Passionate Web developer since 1999" | ||
# This subtitle may actually look a bit odd on something as formal as a CV... | ||
# subtitle = "Passionate Web developer since 1999" | ||
# ...so let's just use a more traditional one: | ||
subtitle = "Python & JavaScript web developer" | ||
|
||
[meta] | ||
title = "Olivier Philippon - Web developer since 1999" | ||
description = "Olivier Philippon - Web Developer since 1999 - Django and JavaScript developer" | ||
keywords = ["web development", "resume", "python", "django", "postgresql"] | ||
title = "Olivier Philippon - Passionate web developer since 1999" | ||
description = "Olivier Philippon - Web Developer since 1999 - Python and JavaScript developer" | ||
keywords = ["web development", "resume", "python", "django", "node.js", "typescript"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<section class="mb-4"> | ||
{% block caption %} | ||
{% endblock caption %} | ||
|
||
{% block content %} | ||
{% endblock content %} | ||
|
||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
{% extends "myresume/about/_base_section.html" %} | ||
|
||
{% load myresume_tags %} | ||
|
||
<section> | ||
{% svg_icon "education" classes="size-8 print:size-6" %} | ||
{% about_section_title i18n_data.education.title %} | ||
{% block caption %} | ||
{% about_section_caption i18n_data.education.title icon="education" %} | ||
{% endblock caption %} | ||
|
||
{% block content %} | ||
<p> | ||
{{ i18n_data.education.src }} | ||
<br /> | ||
<i>{{ i18n_data.education.src_details }}</i> | ||
</p> | ||
<p class="mt-2">{{ i18n_data.education.baccalaureate }}</p> | ||
</section> | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
{% extends "myresume/about/_base_section.html" %} | ||
|
||
{% load myresume_tags %} | ||
|
||
<section> | ||
{% svg_icon "hobbies" classes="size-8 print:size-6" %} | ||
{% about_section_title i18n_data.hobbies.title %} | ||
{% block caption %} | ||
{% about_section_caption i18n_data.hobbies.title icon="hobbies" %} | ||
{% endblock caption %} | ||
|
||
{% block content %} | ||
<p itemprop="knowsAbout">{{ i18n_data.hobbies.content }}</p> | ||
</section> | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
{% extends "myresume/about/_base_section.html" %} | ||
|
||
{% load myresume_tags %} | ||
|
||
<section> | ||
{% svg_icon "languages" classes="size-8 print:size-6" %} | ||
{% about_section_title i18n_data.languages.title %} | ||
{% block caption %} | ||
{% about_section_caption i18n_data.languages.title icon="languages" %} | ||
{% endblock caption %} | ||
|
||
{% block content %} | ||
{% for lang in i18n_data.languages.list %} | ||
<p itemprop="knowsLanguage">{{ lang }}</p> | ||
{% endfor %} | ||
</section> | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
{% extends "myresume/about/_base_section.html" %} | ||
|
||
{% load myresume_tags %} | ||
|
||
<section> | ||
{% svg_icon "open-source" classes="size-8 print:size-6" %} | ||
{% about_section_title i18n_data.open_source_projects.title %} | ||
{% block caption %} | ||
{% about_section_caption i18n_data.open_source_projects.title icon="open-source" %} | ||
{% endblock caption %} | ||
|
||
{% block content %} | ||
<p> | ||
<a class="underline" | ||
href="https://github.com/{{ bio_data.github_id }}" | ||
itemprop="sameAs" | ||
target="_blank" | ||
rel="noopener">github.com/{{ bio_data.github_id }}</a> | ||
</p> | ||
</section> | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
{% extends "myresume/about/_base_section.html" %} | ||
|
||
{% load myresume_tags %} | ||
|
||
<section> | ||
{% svg_icon "side-projects" classes="size-8 print:size-6" %} | ||
{% about_section_title i18n_data.side_projects.title %} | ||
{% block caption %} | ||
{% about_section_caption i18n_data.side_projects.title icon="side-projects" %} | ||
{% endblock caption %} | ||
|
||
{% block content %} | ||
<p itemprop="owns">{{ i18n_data.side_projects.content|safe }}</p> | ||
</section> | ||
{% endblock content %} |
6 changes: 6 additions & 0 deletions
6
myresume/templates/myresume/about/tags/_about_section_caption.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{% load myresume_tags %} | ||
|
||
<div class="flex items-center mb-1"> | ||
{% svg_icon icon classes="-ml-0.5 inline-block size-8 print:size-6" %} | ||
<span class="inline-block ml-1" {{ itemprop_attr }}>{{ title }}</span> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
{% extends "myresume/about/_base_section.html" %} | ||
|
||
{% load myresume_tags %} | ||
|
||
<section> | ||
{% svg_icon "teaching" classes="size-8 print:size-6" %} | ||
{% about_section_title i18n_data.teaching.title %} | ||
{% block caption %} | ||
{% about_section_caption i18n_data.teaching.title icon="teaching" %} | ||
{% endblock caption %} | ||
|
||
{% block content %} | ||
<p>{{ i18n_data.teaching.content|safe }}</p> | ||
</section> | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.