Merge branch 'change-names-secctions' into my-changes
This commit is contained in:
@@ -142,6 +142,7 @@ params:
|
|||||||
# Experience
|
# Experience
|
||||||
experience:
|
experience:
|
||||||
enable: true
|
enable: true
|
||||||
|
# title: "Custom Name"
|
||||||
items:
|
items:
|
||||||
- job: "Senior Software Developer"
|
- job: "Senior Software Developer"
|
||||||
company: "Facebook"
|
company: "Facebook"
|
||||||
@@ -206,6 +207,7 @@ params:
|
|||||||
# Education
|
# Education
|
||||||
education:
|
education:
|
||||||
enable: true
|
enable: true
|
||||||
|
# title: "Custom Name"
|
||||||
# index: true
|
# index: true
|
||||||
items:
|
items:
|
||||||
- title: "Master of Business Administration"
|
- title: "Master of Business Administration"
|
||||||
@@ -248,6 +250,7 @@ params:
|
|||||||
# Achievements
|
# Achievements
|
||||||
achievements:
|
achievements:
|
||||||
enable: true
|
enable: true
|
||||||
|
# title: "Custom Name"
|
||||||
items:
|
items:
|
||||||
- title: Google kickstart runner
|
- title: Google kickstart runner
|
||||||
content: I solved all problems with optimal solution.
|
content: I solved all problems with optimal solution.
|
||||||
@@ -266,6 +269,7 @@ params:
|
|||||||
# projects
|
# projects
|
||||||
projects:
|
projects:
|
||||||
enable: true
|
enable: true
|
||||||
|
# title: "Custom Name"
|
||||||
items:
|
items:
|
||||||
- title: Hugo Profile
|
- title: Hugo Profile
|
||||||
content: A highly customizable and mobile first Hugo template for personal portfolio and blog.
|
content: A highly customizable and mobile first Hugo template for personal portfolio and blog.
|
||||||
@@ -315,6 +319,7 @@ params:
|
|||||||
#Contact
|
#Contact
|
||||||
contact:
|
contact:
|
||||||
enable: true
|
enable: true
|
||||||
|
#title: "Custom name"
|
||||||
content: My inbox is always open. Whether you have a question or just want to say hi, I’ll try my best to get back to you!
|
content: My inbox is always open. Whether you have a question or just want to say hi, I’ll try my best to get back to you!
|
||||||
email: gurusabarisha@gmail.com
|
email: gurusabarisha@gmail.com
|
||||||
btnName: Mail me
|
btnName: Mail me
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{{ if .Site.Params.achievements.enable | default false }}
|
{{ if .Site.Params.achievements.enable | default false }}
|
||||||
<section id="achievements" class="py-5">
|
<section id="achievements" class="py-5">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h3 class="text-center">Achievements</h3>
|
<h3 class="text-center">{{ .Site.Params.achievements.title | default "Achievements" }}</h3>
|
||||||
<div class="px-0 px-md-5 px-lg-5">
|
<div class="px-0 px-md-5 px-lg-5">
|
||||||
<div class="row justify-content-center px-3 px-md-5 px-lg-5">
|
<div class="row justify-content-center px-3 px-md-5 px-lg-5">
|
||||||
{{ range .Site.Params.achievements.items }}
|
{{ range .Site.Params.achievements.items }}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{{ if .Site.Params.contact.enable | default false }}
|
{{ if .Site.Params.contact.enable | default false }}
|
||||||
<section id="contact" class="py-5">
|
<section id="contact" class="py-5">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h3 class="text-center">Get In Touch</h3>
|
<h3 class="text-center">{{ .Site.Params.contact.title | default "Get in Touch" }}</h3>
|
||||||
<div class="px-0 px-md-5 px-lg-5">
|
<div class="px-0 px-md-5 px-lg-5">
|
||||||
<div class="row justify-content-center px-md-5">
|
<div class="row justify-content-center px-md-5">
|
||||||
<div class="col-md-8 py-3">
|
<div class="col-md-8 py-3">
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{{ if .Site.Params.education.enable | default false }}
|
{{ if .Site.Params.education.enable | default false }}
|
||||||
<section id="education" class="py-5">
|
<section id="education" class="py-5">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h3 class="text-center">Education</h3>
|
<h3 class="text-center">{{ Site.Params.education.title | default "Education" }}</h3>
|
||||||
<div class="row justify-content-center py-5">
|
<div class="row justify-content-center py-5">
|
||||||
{{ $indexMenu := .Site.Params.education.index }}
|
{{ $indexMenu := .Site.Params.education.index }}
|
||||||
{{ range $index, $element := .Site.Params.education.items }}
|
{{ range $index, $element := .Site.Params.education.items }}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{{ if .Site.Params.experience.enable | default false }}
|
{{ if .Site.Params.experience.enable | default false }}
|
||||||
<section id="experience" class="py-5">
|
<section id="experience" class="py-5">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h3 class="text-center">Experience</h3>
|
<h3 class="text-center">{{ .Site.Params.experience.title | default "Experience" }}</h3>
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-sm-12 col-md-8 col-lg-8 py-5">
|
<div class="col-sm-12 col-md-8 col-lg-8 py-5">
|
||||||
<div class="experience-container px-3 pt-2">
|
<div class="experience-container px-3 pt-2">
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{{ if .Site.Params.projects.enable | default false }}
|
{{ if .Site.Params.projects.enable | default false }}
|
||||||
<section id="projects" class="py-5">
|
<section id="projects" class="py-5">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h3 class="text-center">Projects</h3>
|
<h3 class="text-center">{{ .Site.Params.projects.title | default "Projects" }}</h3>
|
||||||
<div class="row justify-content-center px-3 px-md-5">
|
<div class="row justify-content-center px-3 px-md-5">
|
||||||
{{ range .Site.Params.projects.items }}
|
{{ range .Site.Params.projects.items }}
|
||||||
<div class="col-lg-4 col-md-6 my-3">
|
<div class="col-lg-4 col-md-6 my-3">
|
||||||
|
|||||||
Reference in New Issue
Block a user