diff --git a/_config.yml b/_config.yml index 2e0be2f..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,11 +10,14 @@ 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 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 @@ -24,8 +26,14 @@ 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" +compress_html: # - http://jch.penibelst.de/ + clippings: all + ignore: + envs: development 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/_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/_data/interests.yml b/_data/interests.yml new file mode 100644 index 0000000..d31aa1c --- /dev/null +++ b/_data/interests.yml @@ -0,0 +1,6 @@ +- interest: + item: Climbing +- interest: + item: Snowboarding +- interest: + item: Cooking diff --git a/_data/languages.yml b/_data/languages.yml new file mode 100644 index 0000000..52b5b52 --- /dev/null +++ b/_data/languages.yml @@ -0,0 +1,9 @@ +- language: + idiom: English + level: Native +- language: + idiom: French + level: Professional +- language: + idiom: Spanish + level: Professional 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/_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/career-profile.html b/_includes/career-profile.html index 0a5e51d..58a23dc 100644 --- a/_includes/career-profile.html +++ b/_includes/career-profile.html @@ -1,6 +1,11 @@ +{% 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 %} 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 %} diff --git a/_includes/experience.html b/_includes/experience.html index 27e592f..c408ecf 100644 --- a/_includes/experience.html +++ b/_includes/experience.html @@ -1,45 +1,29 @@ +{% if site.data.experiences %}
-

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 %} + + +{% 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/interests.html b/_includes/interests.html index f529950..9e8d6cc 100644 --- a/_includes/interests.html +++ b/_includes/interests.html @@ -1,8 +1,13 @@ +{% if site.data.interests %}
-

Interests

- + +

Interests

+ + +
+{% endif %} diff --git a/_includes/language.html b/_includes/language.html index 7435d97..aa5ca9d 100644 --- a/_includes/language.html +++ b/_includes/language.html @@ -1,8 +1,13 @@ +{% if site.data.languages %}
-

Languages

- -
\ No newline at end of file + +

Languages

+ + + + +{% endif %} 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 %} diff --git a/_includes/sidebar.html b/_includes/sidebar.html index 3bf2ac4..2ed6e6e 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -1,58 +1,53 @@ - + + 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 %}