diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml index 8132b96..2cd6e1d 100644 --- a/exampleSite/config.yaml +++ b/exampleSite/config.yaml @@ -41,6 +41,7 @@ params: # some information about you author: name: "Jane Doe" + nickname: "Jane" image: "images/avatar.png" # give your some contact information. they will be used in the footer contactInfo: diff --git a/exampleSite/data/sections/about.yaml b/exampleSite/data/sections/about.yaml index 8ae9359..048bff1 100644 --- a/exampleSite/data/sections/about.yaml +++ b/exampleSite/data/sections/about.yaml @@ -47,7 +47,7 @@ socialLinks: # your soft skills # give the percentage between 50 to 100 with 5 intervals. -# currently supported color: blue, yellow, pink, green +# currently supported colors: blue, yellow, pink, green, sky, orange softSkills: - name: Leadership percentage: 85 @@ -60,4 +60,17 @@ softSkills: color: pink - name: Hard Working percentage: 85 - color: green \ No newline at end of file + color: green +- name: Fast Learner + percentage: 85 + color: sky +- name: Problem Solving + percentage: 85 + color: orange +# you can also provide color code instead of pre-defined color name +# - name: Example 1 +# percentage: 75 +# color: "#00adb5" +# - name: Example 2 +# percentage: 65 +# color: "#8b8383" diff --git a/exampleSite/data/sections/achievements.yaml b/exampleSite/data/sections/achievements.yaml index 5877753..eee213b 100644 --- a/exampleSite/data/sections/achievements.yaml +++ b/exampleSite/data/sections/achievements.yaml @@ -4,6 +4,8 @@ section: enable: true weight: 6 showOnNavbar: true + # Can optionally hide the title in sections + # hideTitle: true # Your achievements achievements achievements: diff --git a/exampleSite/data/sections/experiences.yaml b/exampleSite/data/sections/experiences.yaml index 3ed8349..b5366d6 100644 --- a/exampleSite/data/sections/experiences.yaml +++ b/exampleSite/data/sections/experiences.yaml @@ -4,7 +4,8 @@ section: enable: true weight: 3 showOnNavbar: true - + # Can optionally hide the title in sections + # hideTitle: true # Your experiences experiences: diff --git a/exampleSite/data/sections/projects.yaml b/exampleSite/data/sections/projects.yaml index 0d84565..ea0c02e 100644 --- a/exampleSite/data/sections/projects.yaml +++ b/exampleSite/data/sections/projects.yaml @@ -4,6 +4,8 @@ section: enable: true weight: 4 showOnNavbar: true + # Can optionally hide the title in sections + # hideTitle: true # filter buttons buttons: diff --git a/exampleSite/data/sections/recent-posts.yaml b/exampleSite/data/sections/recent-posts.yaml index 9fb496a..357e99f 100644 --- a/exampleSite/data/sections/recent-posts.yaml +++ b/exampleSite/data/sections/recent-posts.yaml @@ -4,5 +4,7 @@ section: enable: true weight: 5 showOnNavbar: true + # Can optionally hide the title in sections + # hideTitle: true # no other configuration is required diff --git a/exampleSite/data/sections/skills.yaml b/exampleSite/data/sections/skills.yaml index 05730d8..8a8aaac 100644 --- a/exampleSite/data/sections/skills.yaml +++ b/exampleSite/data/sections/skills.yaml @@ -4,6 +4,8 @@ section: enable: true weight: 2 showOnNavbar: true + # Can optionally hide the title in sections + # hideTitle: true # Your Skills. # Give a summary of you each skill in the summary section. diff --git a/layouts/partials/achievements.html b/layouts/partials/achievements.html index 1805631..75995a9 100644 --- a/layouts/partials/achievements.html +++ b/layouts/partials/achievements.html @@ -1,5 +1,7 @@