diff --git a/layouts/index.html b/layouts/index.html index f4a0dd9..47478f3 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -14,10 +14,7 @@ {{ define "main" }} {{- partial "sections/hero/index.html" . -}} {{- partial "sections/about.html" . -}} -{{- partial "sections/experience.html" . -}} -{{- partial "sections/education.html" . -}} {{- partial "sections/projects.html" . -}} {{- partial "sections/testimonial.html" . -}} -{{- partial "sections/achievements.html" . -}} {{- partial "sections/contact.html" . -}} {{ end }} \ No newline at end of file diff --git a/layouts/partials/sections/achievements.html b/layouts/partials/sections/achievements.html deleted file mode 100644 index 1207c72..0000000 --- a/layouts/partials/sections/achievements.html +++ /dev/null @@ -1,36 +0,0 @@ -{{ if .Site.Params.achievements.enable | default false }} -
-
-

{{ .Site.Params.achievements.title | default "Achievements" }}

-
-
- {{ range .Site.Params.achievements.items }} - {{ if .url }} - - {{ else }} -
-
-
-
{{ .title }}
-
- {{ .content }} -
-
-
-
- {{ end }} - {{ end }} -
-
-
-
-{{ end }} \ No newline at end of file diff --git a/layouts/partials/sections/education.html b/layouts/partials/sections/education.html deleted file mode 100644 index 3141b1e..0000000 --- a/layouts/partials/sections/education.html +++ /dev/null @@ -1,66 +0,0 @@ -{{ if .Site.Params.education.enable | default false }} -
-
-

{{ .Site.Params.education.title | default "Education" }}

-
- {{ $indexMenu := .Site.Params.education.index }} - {{ range $index, $element := .Site.Params.education.items }} -
-
- {{ if $indexMenu }} -
-
- - {{ add $index 1 }} - -
-
- {{ end }} - -
-
-
-
- {{ .date }} -
-
{{ .title }}
- - {{ if .school.url }} - -
- {{ .school.name }} -
-
- {{ else }} - {{ .school.name }} - {{ end }} - - {{ if .GPA }} -
- GPA: - - {{ .GPA }} - -
- {{ end }} -
- {{ .content | markdownify}} -
- - {{ if .featuredLink.enable }} - - {{ end }} -
-
-
-
-
- {{ end }} -
-
-
-{{ end }} diff --git a/layouts/partials/sections/experience.html b/layouts/partials/sections/experience.html deleted file mode 100644 index f9c2d13..0000000 --- a/layouts/partials/sections/experience.html +++ /dev/null @@ -1,130 +0,0 @@ -{{ if .Site.Params.experience.enable | default false }} -
-
-

{{ .Site.Params.experience.title | default "Experience" }}

-
-
-
- -
- {{ range $index, $element := .Site.Params.experience.items }} - {{ if (eq $index 0) }} -
-
- {{ .job }} - - - {{ .company }} -
- {{ .date }} - {{ if .info.enable | default true }} - - - - - - {{ end }} -
- - {{ if .featuredLink.enable | default false }} - - {{ end }} -
- - {{ .content | markdownify}} -
- {{ else }} -
-
- {{ .job }} - - - {{ .company }} - -
- {{ .date }} - {{ if .info.enable | default true }} - - - - - - {{ end }} -
- - {{ if .featuredLink.enable | default false }} - - {{ end }} -
- -
- {{ .content | markdownify}} -
-
- {{ end }} - {{ end }} -
-
-
-
-
-
-{{ end }}