From b0877f42844668df3423c3496ea609dfef1e32be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nelson=20Estev=C3=A3o?= Date: Sun, 29 Oct 2017 13:27:49 +0000 Subject: [PATCH 01/11] added build settings for development mode --- _config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/_config.yml b/_config.yml index 2e0be2f..b943f77 100644 --- a/_config.yml +++ b/_config.yml @@ -29,3 +29,10 @@ twitter: '@webjeda' # Tracker analytics: UA-83979019-1 #Update all the sections by editing the files inside _includes folder. + +# Build settings +encoding: "utf-8" +compress_html: # - http://jch.penibelst.de/ + clippings: all + ignore: + envs: development From 02e7995b9ef0d57c241d472c0c84c1e99883e9b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nelson=20Estev=C3=A3o?= Date: Sun, 29 Oct 2017 13:44:04 +0000 Subject: [PATCH 02/11] added career profile as a variable in the _config.yml so it's easier to change it --- _config.yml | 4 ++++ _includes/career-profile.html | 12 +++++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/_config.yml b/_config.yml index b943f77..d2bb65c 100644 --- a/_config.yml +++ b/_config.yml @@ -16,6 +16,10 @@ baseurl: '/online-cv' #change it according to your repository name name: Alan Doe tagline: Full Stack Developer pic: profile.png #place a 100x100 picture inside /assets/images/ folder and provide the name of the file below +summary: 'Summarise your career here lorem ipsum dolor sit amet, consectetuer adipiscing elit. +You can download this free resume/CV template here. Aenean +commodo ligula eget dolor aenean massa. Cum sociis natoque penatibus et magnis dis parturient +montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu.' #sidebar links email: hello@webjeda.com diff --git a/_includes/career-profile.html b/_includes/career-profile.html index 0a5e51d..95d3623 100644 --- a/_includes/career-profile.html +++ b/_includes/career-profile.html @@ -1,6 +1,8 @@ +{% if site.summary %}
-

Career Profile

-
-

Summarise your career here lorem ipsum dolor sit amet, consectetuer adipiscing elit. You can download this free resume/CV template here. Aenean commodo ligula eget dolor aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu.

-
-
\ No newline at end of file +

Career Profile

+
+

{{ site.summary }}

+
+ +{% endif %} From 6ba0a2447f2199063e279ff3286918b3b72f0cb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nelson=20Estev=C3=A3o?= Date: Sun, 29 Oct 2017 13:46:28 +0000 Subject: [PATCH 03/11] reorganize the _config.yml file --- _config.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/_config.yml b/_config.yml index d2bb65c..46997bb 100644 --- a/_config.yml +++ b/_config.yml @@ -1,9 +1,8 @@ - +# Site Settings title: My Resume url: 'http://webjeda.com' baseurl: '/online-cv' #change it according to your repository name - # Enable one of these styles by removing #. Style will be applied only after restarting the build or serve. #style: styles-2 #style: styles-3 @@ -11,7 +10,6 @@ baseurl: '/online-cv' #change it according to your repository name #style: styles-5 #style: styles-6 - #Profile information name: Alan Doe tagline: Full Stack Developer @@ -28,11 +26,10 @@ website: blog.webjeda.com #do not add http:// linkedin: alandoe github: sharu725 twitter: '@webjeda' - +#Update all the sections by editing the files inside _data folder. # Tracker analytics: UA-83979019-1 -#Update all the sections by editing the files inside _includes folder. # Build settings encoding: "utf-8" From a0349345d5315596b0f8aa00957c040c3453ee29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nelson=20Estev=C3=A3o?= Date: Sun, 29 Oct 2017 13:58:55 +0000 Subject: [PATCH 04/11] Added _data folder in order to became easier to change profile information It was also added Education as a variable and now its easier to make it appear or not as well to change information on educations.yml --- _data/educations.yml | 8 ++++++++ _includes/education.html | 28 +++++++++++++++------------- 2 files changed, 23 insertions(+), 13 deletions(-) create mode 100644 _data/educations.yml diff --git a/_data/educations.yml b/_data/educations.yml new file mode 100644 index 0000000..0cc16bc --- /dev/null +++ b/_data/educations.yml @@ -0,0 +1,8 @@ +- education: + degree: MSc in Computer Science + university: University of London + time: 2011 - 2012 +- education: + degree: BSc in Applied Mathematics + university: Bristol University + time: 2007 - 2011 diff --git a/_includes/education.html b/_includes/education.html index 72b1a10..0462032 100644 --- a/_includes/education.html +++ b/_includes/education.html @@ -1,13 +1,15 @@ -
-

Education

-
-

MSc in Computer Science

-
University of London
-
2011 - 2012
-
-
-

BSc in Applied Mathematics

-
Bristol University
-
2007 - 2011
-
-
\ No newline at end of file +{% if site.data.educations %} +
+ +

Education

+ + {% for education in site.data.educations %} +
+

{{ education.degree }}

+
{{ education.university }}
+
{{ education.time }}
+
+ {% endfor %} + +
+{% endif %} From 6f30e94ea468dfeb4c9e51e152530f2ac7d1b00e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nelson=20Estev=C3=A3o?= Date: Sun, 29 Oct 2017 14:15:35 +0000 Subject: [PATCH 05/11] made experience easier to edit --- _data/experiences.yml | 28 +++++++++++++++ _includes/experience.html | 71 +++++++++++++++------------------------ 2 files changed, 55 insertions(+), 44 deletions(-) create mode 100644 _data/experiences.yml diff --git a/_data/experiences.yml b/_data/experiences.yml new file mode 100644 index 0000000..27f5c8e --- /dev/null +++ b/_data/experiences.yml @@ -0,0 +1,28 @@ +- experience: + role: Lead Developer + time: 2015 - Present + company: Startup Hubs, San Francisco + details: "Describe your role here lorem ipsum dolor sit amet, consectetuer adipiscing + elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et + magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, + pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo. +

+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque + laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi + architecto beatae vitae dicta sunt explicabo." +- experience: + role: Senior Software Engineer + time: 2014 - 2015 + company: Google, London + details: "Describe your role here lorem ipsum dolor sit amet, consectetuer adipiscing + elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et + magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, + pellentesque eu, pretium quis, sem." +- experience: + role: UI Developer + time: 2012 - 2014 + company: Amazon, London + details: "Describe your role here lorem ipsum dolor sit amet, consectetuer adipiscing + elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et + magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, + pellentesque eu, pretium quis, sem." diff --git a/_includes/experience.html b/_includes/experience.html index 27e592f..1c41330 100644 --- a/_includes/experience.html +++ b/_includes/experience.html @@ -1,45 +1,28 @@
-

Experiences

- -
-
-
-

Lead Developer

-
2015 - Present
-
-
Startup Hubs, San Francisco
-
-
-

Describe your role here lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo.

-

Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.

-
-
- -
-
-
-

Senior Software Engineer

-
2014 - 2015
-
-
Google, London
-
-
-

Describe your role here lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.

- -
-
- -
-
-
-

UI Developer

-
2012 - 2014
-
-
Amazon, London
-
-
-

Describe your role here lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.

-
-
- -
\ No newline at end of file +

Experiences

+ +{% for experience in site.data.experiences %} +
+ +
+ +
+

{{ experience.role }}

+
{{ experience.time }}
+
+ +
{{ experience.company }}
+ +
+ + {% if experience.details %} +
+

{{ experience.details }}

+
+ {% endif %} + +
+{% endfor %} + + + From 21bf9477f1bb0a136e5078a98ec7ae415392fb16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nelson=20Estev=C3=A3o?= Date: Sun, 29 Oct 2017 14:33:29 +0000 Subject: [PATCH 06/11] made projects section easier to edit on _data folder --- _data/projects.yml | 24 +++++++++++++++++++++ _includes/projects.html | 46 +++++++++++++++++++++-------------------- 2 files changed, 48 insertions(+), 22 deletions(-) create mode 100644 _data/projects.yml diff --git a/_data/projects.yml b/_data/projects.yml new file mode 100644 index 0000000..2974bb1 --- /dev/null +++ b/_data/projects.yml @@ -0,0 +1,24 @@ +- intro: + description: "You can list your side projects or open source libraries in this section. Lorem ipsum dolor + sit amet, consectetur adipiscing elit. Vestibulum et ligula in nunc bibendum fringilla a eu lectus." + +- project: + title: Velocity + link: "#hook" + tagline: "A responsive website template designed to help startups promote, market and sell their products." +- project: + title: DevStudio + link: "#" + tagline: "A responsive website template designed to help web developers/designers market their services." +- project: + title: Tempo + link: "#" + tagline: "A responsive website template designed to help startups promote their products or services and to attract users & investors" +- project: + title: Atom + link: "#" + tagline: "A comprehensive website template solution for startups/developers to market their mobile apps." +- project: + title: Delta + link: "#" + tagline: "A responsive Bootstrap one page theme designed to help app developers promote their mobile apps" diff --git a/_includes/projects.html b/_includes/projects.html index 0980704..c0812ac 100644 --- a/_includes/projects.html +++ b/_includes/projects.html @@ -1,23 +1,25 @@ +{% if site.data.projects %}
-

Projects

-
-

You can list your side projects or open source libraries in this section. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum et ligula in nunc bibendum fringilla a eu lectus.

-
-
- Velocity - A responsive website template designed to help startups promote, market and sell their products. - -
-
- DevStudio - - A responsive website template designed to help web developers/designers market their services. -
-
- Tempo - A responsive website template designed to help startups promote their products or services and to attract users & investors -
-
- Atom - A comprehensive website template solution for startups/developers to market their mobile apps. -
-
- Delta - A responsive Bootstrap one page theme designed to help app developers promote their mobile apps -
-
\ No newline at end of file + +

Projects

+ + {% for intro in site.data.projects %} +
+

{{ intro.description }}

+
+ {% endfor%} + + {% for project in site.data.projects %} +
+ + {{ project.title }} + + {% if project.tagline %} + - {{ project.tagline }} + {% endif %} + +
+ {% endfor %} + + +{% endif %} From 814ab5af0860acafdf3ca2db2a3475847a5e2100 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nelson=20Estev=C3=A3o?= Date: Sun, 29 Oct 2017 14:41:43 +0000 Subject: [PATCH 07/11] made skill section easier to edit on _data folder --- _data/skills.yml | 18 +++++++++++ _includes/skills.html | 75 +++++++++++++------------------------------ 2 files changed, 41 insertions(+), 52 deletions(-) create mode 100644 _data/skills.yml diff --git a/_data/skills.yml b/_data/skills.yml new file mode 100644 index 0000000..46e642e --- /dev/null +++ b/_data/skills.yml @@ -0,0 +1,18 @@ +- skill: + name: Python & Django + level: 98% +- skill: + name: Javascript & jQuery + level: 98% +- skill: + name: Angular + level: 98% +- skill: + name: HTML5 & CSS + level: 95% +- skill: + name: Ruby on Rails + level: 85% +- skill: + name: Sketch & Photoshop + level: 60% diff --git a/_includes/skills.html b/_includes/skills.html index 0e882a4..753b4c1 100644 --- a/_includes/skills.html +++ b/_includes/skills.html @@ -1,53 +1,24 @@ +{% if site.data.skills %}
-

Skills & Proficiency

-
-
-

Python & Django

-
-
-
-
-
- -
-

Javascript & jQuery

-
-
-
-
-
- -
-

Angular

-
-
-
-
-
- -
-

HTML5 & CSS

-
-
-
-
-
- -
-

Ruby on Rails

-
-
-
-
-
- -
-

Sketch & Photoshop

-
-
-
-
-
- -
-
\ No newline at end of file + +

Skills & Proficiency

+ +
+ + {% for skill in site.data.skills %} +
+ +

{{ skill.name }}

+ +
+
+
+
+ +
+ {% endfor %} + +
+ + +{% endif %} From 206bd30318c1f6f2fe5e69841ac491fb0de45d09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nelson=20Estev=C3=A3o?= Date: Sun, 29 Oct 2017 14:46:01 +0000 Subject: [PATCH 08/11] made sidebar.hmtl easier on the eyes and simpler to change profile informatio --- _includes/sidebar.html | 110 ++++++++++++++++++++--------------------- 1 file changed, 53 insertions(+), 57 deletions(-) diff --git a/_includes/sidebar.html b/_includes/sidebar.html index 3bf2ac4..0149b8e 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -1,58 +1,54 @@ - + + + From ddaca6f4c758243007c959fc3657311d496292eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nelson=20Estev=C3=A3o?= Date: Sun, 29 Oct 2017 14:54:15 +0000 Subject: [PATCH 09/11] fixed path image --- _includes/sidebar.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_includes/sidebar.html b/_includes/sidebar.html index 0149b8e..ae7c72c 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -3,8 +3,8 @@ {% endfor %} - +{% endif %} diff --git a/_includes/footer.html b/_includes/footer.html index bba342d..d8048dd 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,6 +1,6 @@ \ No newline at end of file + diff --git a/_includes/sidebar.html b/_includes/sidebar.html index ae7c72c..2ed6e6e 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -1,5 +1,4 @@ -