From b91225665c76da2964bf48521f6ea70e6db884b6 Mon Sep 17 00:00:00 2001 From: Justus Adam Date: Wed, 17 Apr 2019 12:33:13 +0200 Subject: [PATCH 01/16] Made the site description configurable (#110) --- _config.yml | 1 + _includes/head.html | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 4e1e236..6cb9e04 100644 --- a/_config.yml +++ b/_config.yml @@ -4,6 +4,7 @@ title: My Resume url: 'http://webjeda.com' baseurl: '/online-cv' #change it according to your repository name +description: A beautiful Jekyll theme for creating resume # Style will be applied only after restarting the build or serve. Just choose one of the options. theme_skin: blue # blue turquoise green berry orange ceramic chrome_mobile_color: #use hex colors (ex:#1976d2) or leave empty if you don't want a color for chrome mobile searchbar diff --git a/_includes/head.html b/_includes/head.html index 5fe77a3..2ee7cda 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -8,7 +8,8 @@ {% endif%} - + From 113bd8a0f865b0cc2c47fb45a2ac511286ba7c29 Mon Sep 17 00:00:00 2001 From: Ozan Hanedan Date: Sat, 7 Sep 2019 13:10:57 +0300 Subject: [PATCH 02/16] Removed anchor tag for projects without a link (#130) --- _includes/projects.html | 6 +++++- _sass/_base.scss | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/_includes/projects.html b/_includes/projects.html index 8d125ee..c50783c 100644 --- a/_includes/projects.html +++ b/_includes/projects.html @@ -20,7 +20,11 @@
- {{ project.title }} + {% if project.link %} + {{ project.title }} + {% else %} + {{ project.title }} + {% endif %} {% if project.tagline %} diff --git a/_sass/_base.scss b/_sass/_base.scss index 81d781c..2b66ce8 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -203,6 +203,7 @@ p { font-weight: 400; margin-top: 0; margin-bottom: 5px; + color: darken($theme-color, 15%); } .projects-section { .intro { From ab2c0027fd2856e8b2893cc312317ddcf8f701be Mon Sep 17 00:00:00 2001 From: Martin Larizzate Date: Tue, 12 Nov 2019 08:45:33 -0300 Subject: [PATCH 03/16] Add optional link on publication title (#137) --- _data/data.yml | 17 +++-------------- _includes/publications.html | 6 +++++- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/_data/data.yml b/_data/data.yml index 901daae..b300496 100644 --- a/_data/data.yml +++ b/_data/data.yml @@ -52,9 +52,7 @@ career-profile: 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. - Second paragraph if required. - education: - degree: MSc in Computer Science university: University of London @@ -65,10 +63,8 @@ education: sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. - - Bullet point - Bullet point - - degree: BSc in Applied Mathematics university: Bristol University time: 2007 - 2011 @@ -78,10 +74,8 @@ education: sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. - - Bullet point - Bullet point - experiences: - role: Lead Developer time: 2015 - Present @@ -96,10 +90,8 @@ experiences: error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. - - Bullet point - Bullet point - - role: Senior Software Engineer time: 2014 - 2015 company: Google, London @@ -109,10 +101,8 @@ experiences: Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. - - Bullet point - Bullet point - - role: UI Developer time: 2012 - 2014 company: Amazon, London @@ -122,17 +112,14 @@ experiences: Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. - - Bullet point - Bullet point - projects: title: Projects intro: > 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. - assignments: - title: Velocity link: "#hook" @@ -160,17 +147,19 @@ publications: You can list your publications in this section. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum et ligula in nunc bibendum fringilla a eu lectus. - papers: - title: The Art of Computer Programming + link: "#" authors: Donald E. Knuth conference: Addison-Wesley, 1968 - title: "Genetic Programming III: Darwinian Invention & Problem Solving" + link: "#" authors: Koza, J.R., Andre, D., Bennett, F.H., Keane, M.A. conference: "Morgan Kaufmann Publishers Inc., San Francisco, CA, USA, 1st edn. (1999)" - title: A syntax directed compiler for Algol 60 + link: "#" authors: Edgar T. Irons conference: "Comm. ACM 4 (1961), 51–55" diff --git a/_includes/publications.html b/_includes/publications.html index e069b99..e1f39ad 100644 --- a/_includes/publications.html +++ b/_includes/publications.html @@ -18,7 +18,11 @@ {% for publication in publications.papers %}
-
{{ publication.title }}
+ {% if publication.link %} +
  • {{ publication.title }}
  • + {% else %} +
  • {{ publication.title }}
  • + {% endif %}
    {{ publication.authors }}
    {{ publication.conference }}
    From b79cbcbd22a99b4f0215c6b5f6feab2d12a9ddac Mon Sep 17 00:00:00 2001 From: Denis Titusov Date: Thu, 5 Mar 2020 21:27:56 +0300 Subject: [PATCH 04/16] Add telegram icon --- _data/data.yml | 1 + _includes/contact.html | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/_data/data.yml b/_data/data.yml index b300496..885617c 100644 --- a/_data/data.yml +++ b/_data/data.yml @@ -17,6 +17,7 @@ sidebar: website: blog.webjeda.com #do not add http:// linkedin: alandoe github: sharu725 + telegram: # add your nickname without '@' sign gitlab: bitbucket: twitter: '@webjeda' diff --git a/_includes/contact.html b/_includes/contact.html index 30f79dc..e83ddfd 100644 --- a/_includes/contact.html +++ b/_includes/contact.html @@ -13,6 +13,12 @@ {% endif %} + {% if sidebar.telegram %} +
  • + {{ sidebar.telegram }} +
  • + {% endif %} + {% if sidebar.website %}
  • {{ sidebar.website }} From c369a297c822ffd92345193a70a0afc357ee6602 Mon Sep 17 00:00:00 2001 From: sharath Kumar Date: Sat, 22 Aug 2020 22:01:40 +0530 Subject: [PATCH 05/16] Delete LICENSE.txt --- LICENSE.txt | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt deleted file mode 100644 index b8e3977..0000000 --- a/LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2019 webjeda - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. From 02e7163c76f858ed281257925d471bb4990699d4 Mon Sep 17 00:00:00 2001 From: sharath Kumar Date: Sat, 22 Aug 2020 22:02:09 +0530 Subject: [PATCH 06/16] Update README.md --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 34f368f..5967905 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,3 @@ Thanks to [Nelson Estevão](https://github.com/nelsonmestevao) for all the [cont Thanks to [t-h-e(sfrost)](https://github.com/t-h-e) for all the [contributions](https://github.com/sharu725/online-cv/commits?author=t-h-e). Check out for more themes: [**Jekyll Themes**](http://jekyll-themes.com). - -## License - -This project is licensed under the [MIT license](LICENSE.txt). From 82b3a03800a5a56f37fa7201e175b6e305a1439b Mon Sep 17 00:00:00 2001 From: sharath Kumar Date: Tue, 29 Sep 2020 12:03:55 +0530 Subject: [PATCH 07/16] Create FUNDING.yml --- .github/FUNDING.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..e09d7d8 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: https://paypal.me/webjeda # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] From f1ce335b16fb6727da955eb146a2651569bfe40b Mon Sep 17 00:00:00 2001 From: sharath Kumar Date: Tue, 29 Sep 2020 12:04:40 +0530 Subject: [PATCH 08/16] Update FUNDING.yml --- .github/FUNDING.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index e09d7d8..19d6f92 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -9,4 +9,4 @@ community_bridge: # Replace with a single Community Bridge project-name e.g., cl liberapay: # Replace with a single Liberapay username issuehunt: # Replace with a single IssueHunt username otechie: # Replace with a single Otechie username -custom: https://paypal.me/webjeda # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] +custom: https://www.paypal.com/paypalme/webjeda # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] From 53707d58049e889bbc325e170faacb7d63be3a6f Mon Sep 17 00:00:00 2001 From: sideshowcecil Date: Thu, 8 Apr 2021 14:36:05 +0200 Subject: [PATCH 09/16] Add support for xing (#162) --- _data/data.yml | 1 + _includes/contact.html | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/_data/data.yml b/_data/data.yml index 885617c..2a72fc0 100644 --- a/_data/data.yml +++ b/_data/data.yml @@ -16,6 +16,7 @@ sidebar: phone: 012 345 6789 website: blog.webjeda.com #do not add http:// linkedin: alandoe + xing: alandoe github: sharu725 telegram: # add your nickname without '@' sign gitlab: diff --git a/_includes/contact.html b/_includes/contact.html index e83ddfd..2806725 100644 --- a/_includes/contact.html +++ b/_includes/contact.html @@ -31,6 +31,12 @@
  • {% endif %} + {% if sidebar.xing %} +
  • + {{ sidebar.xing }} +
  • + {% endif %} + {% if sidebar.github %}
  • {{ sidebar.github }} From fec942c6e6587c5f566e70f555d6d676b8e58064 Mon Sep 17 00:00:00 2001 From: Suvajit Sarkar Date: Sat, 10 Apr 2021 23:32:58 +0530 Subject: [PATCH 10/16] Update favicon to technologist emoji (#226) --- favicon.ico | Bin 1150 -> 15406 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/favicon.ico b/favicon.ico index 1e7aaf56c0fdc1feeb49108559367fbeef4c57e6..9e211ef77987c3537beff0b78c8565190beeebb8 100644 GIT binary patch literal 15406 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 literal 1150 zcmZQzU<5(|0R|wcz>vYhz#zuJz@P!dKp~(AL>x#lFaYJy!TFFt)FkwO- zIsWVF>M8<;)n5<>nvqY68GU_y`B1(8fiwvJoiu4uHZf*^)S>AGo594y^mp2{Y3caP zShQ$S6i6M^PMFACeBeVjW6hd10WdX$ z=nWe-_)?;O)22;6==$Hhc_W1GekCQPy9x>l_mJHqA|mn%!do;h>I2%FxaD+WxUz!U<*|LPeS{@61x{E%m0 T_`uJ=@PHi^f9yx71?d3*)tQP? From 506ed9f936e751cd3c16919aabf4bc0c624c8714 Mon Sep 17 00:00:00 2001 From: Sharath Kumar Date: Wed, 14 Jul 2021 08:45:23 +0530 Subject: [PATCH 11/16] add pdf file icon to sidebar contact section --- .gitignore | 1 + _data/data.yml | 1 + _includes/contact.html | 6 ++++++ _sass/_base.scss | 2 +- 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5c91b60..8cf9d9d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ _site/ .sass-cache/ .jekyll-metadata +.jekyll-cache \ No newline at end of file diff --git a/_data/data.yml b/_data/data.yml index 2a72fc0..bcaf0d4 100644 --- a/_data/data.yml +++ b/_data/data.yml @@ -25,6 +25,7 @@ sidebar: stack-overflow: # Number/Username, e.g. 123456/alandoe codewars: goodreads: # Number-Username, e.g. 123456-alandoe + pdf: http://www.africau.edu/images/default/sample.pdf languages: - idiom: English diff --git a/_includes/contact.html b/_includes/contact.html index 2806725..a840fe1 100644 --- a/_includes/contact.html +++ b/_includes/contact.html @@ -79,5 +79,11 @@
  • {% endif %} + {% if sidebar.pdf %} +
  • + Resume PDF +
  • + {% endif %} +
    diff --git a/_sass/_base.scss b/_sass/_base.scss index 2b66ce8..0902cd7 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -80,7 +80,7 @@ p { box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); } .contact-list { - .fas, .fab { + .fas, .fab, .far { margin-right: 5px; font-size: 18px; vertical-align: middle; From 35c12fe73d8f337fe7e66ae6e900634b888a9db1 Mon Sep 17 00:00:00 2001 From: sharath Kumar Date: Sat, 21 Aug 2021 17:41:00 +0530 Subject: [PATCH 12/16] Create CNAME --- CNAME | 1 + 1 file changed, 1 insertion(+) create mode 100644 CNAME diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..7235533 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +online-cv.webjeda.com \ No newline at end of file From 5b1fb583c327a48b310c14a3d3ca5c758793dcc4 Mon Sep 17 00:00:00 2001 From: sharath Kumar Date: Sat, 21 Aug 2021 17:42:05 +0530 Subject: [PATCH 13/16] Update _config.yml --- _config.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/_config.yml b/_config.yml index 6cb9e04..704adc2 100644 --- a/_config.yml +++ b/_config.yml @@ -12,8 +12,6 @@ chrome_mobile_color: #use hex colors (ex:#1976d2) or leave empty if you don't wa # Tracker analytics: UA-83979019-1 - - # Sass/SCSS sass: sass_dir: _sass From a21b6783120a2cc87748e2172dfd330041bc56da Mon Sep 17 00:00:00 2001 From: sharath Kumar Date: Sat, 21 Aug 2021 17:43:53 +0530 Subject: [PATCH 14/16] Update _config.yml --- _config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index 704adc2..cee26a6 100644 --- a/_config.yml +++ b/_config.yml @@ -3,7 +3,11 @@ # Site Settings title: My Resume url: 'http://webjeda.com' -baseurl: '/online-cv' #change it according to your repository name + +#change it according to your repository name +# disabling since we are using a custom domain +#baseurl: '/online-cv' + description: A beautiful Jekyll theme for creating resume # Style will be applied only after restarting the build or serve. Just choose one of the options. theme_skin: blue # blue turquoise green berry orange ceramic From 373097e2ce7e5a812d60b831879d9146c143c56f Mon Sep 17 00:00:00 2001 From: sharath Kumar Date: Mon, 20 Dec 2021 13:05:23 +0530 Subject: [PATCH 15/16] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5967905..3902fc8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ > This theme is designed by Xiaoying Riley at [3rd Wave Media](http://themes.3rdwavemedia.com/). > Visit her [website](http://themes.3rdwavemedia.com/) for more themes. -I have made this into a Jekyll Theme. Checkout the live demo [here](https://webjeda.com/online-cv/). +I have made this into a Jekyll Theme. Checkout the live demo [here](https://online-cv.webjeda.com). @@ -15,10 +15,10 @@ I have made this into a Jekyll Theme. Checkout the live demo [here](https://webj
    - + - +
    @@ -41,11 +41,11 @@ There are 6 color schemes available: | Blue | Turquoise | Green | |---------|---------|---------| -| | | | +| | | | | Berry | Orange | Ceramic | |---------|---------|---------| -| | | | +| | | | ## Credits From a7f442c7d5e26d7e5d32dccf0113eb6e98d449a6 Mon Sep 17 00:00:00 2001 From: ChandanChainani Date: Tue, 28 Dec 2021 03:08:19 +0530 Subject: [PATCH 16/16] Fix icon not appearing in print (Issue #120) (#223) If resume printed in pdf section icons does not appear inside circle. --- _sass/_print.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/_sass/_print.scss b/_sass/_print.scss index cc77ade..1cebf72 100644 --- a/_sass/_print.scss +++ b/_sass/_print.scss @@ -36,4 +36,10 @@ -webkit-print-color-adjust: exact; } -} \ No newline at end of file + .fa-inverse, + .fa-inverse:after, + .fa-inverse:before { + color: #ffffff !important; + } + +}