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] 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 %}