+
+
+
+ {{ if .Site.Params.display.objective }}
+ {{ partial "objective" . }}
+ {{ end }}
+
+ {{ if .Site.Params.display.experience }}
+ {{ partial "experience" . }}
+ {{ end }}
+
+ {{ if .Site.Params.display.projects }}
+ {{ partial "projects" . }}
+ {{ end }}
+
+ {{ if .Site.Params.display.papers }}
+ {{ partial "papers" . }}
+ {{ end }}
+
+
+
+
+ {{ if .Site.Params.display.education }}
+ {{ partial "education" . }}
+ {{ end }}
+
+ {{ if .Site.Params.display.languages }}
+ {{ partial "languages" . }}
+ {{ end }}
+
+ {{ if .Site.Params.display.awards }}
+ {{ partial "awards" . }}
+ {{ end }}
+
+ {{ if .Site.Params.display.skills }}
+ {{ partial "skills" . }}
+ {{ end }}
+
+ {{ if .Site.Params.display.skills_grouped }}
+ {{ partial "skills_grouped" . }}
+ {{ end }}
+
+ {{ if .Site.Params.display.interests }}
+ {{ partial "interests" . }}
+ {{ end }}
+
+
+ {{ if .Site.Params.display.footer }}
+
+ {{ end }}
+
+
\ No newline at end of file
diff --git a/layouts/partials/awards.html b/layouts/partials/awards.html
new file mode 100644
index 0000000..75c2732
--- /dev/null
+++ b/layouts/partials/awards.html
@@ -0,0 +1,9 @@
+
+
Awards
+ {{ range .Site.Data.features.awards }}
+
+
{{ .name }}
+ {{ .details | markdownify }} - {{ .date }}
+
+ {{ end }}
+
\ No newline at end of file
diff --git a/layouts/partials/education.html b/layouts/partials/education.html
new file mode 100644
index 0000000..681e666
--- /dev/null
+++ b/layouts/partials/education.html
@@ -0,0 +1,10 @@
+
+
Education
+ {{ range .Site.Data.education }}
+
+
{{ .name }}
+ {{ .university }}
+ {{ .date }} | GPA: {{ .gpa }}
+
+ {{ end }}
+
\ No newline at end of file
diff --git a/layouts/partials/experience.html b/layouts/partials/experience.html
new file mode 100644
index 0000000..b1068e8
--- /dev/null
+++ b/layouts/partials/experience.html
@@ -0,0 +1,25 @@
+
+
Experience
+ {{ $companies := slice }}
+ {{ range .Site.Data.experience }}
+ {{ $companies = $companies | append .company }}
+{{ end }}
+
+{{ $companies = uniq $companies }}
+
+{{ range $companies }}
+ {{ $company := . }}
+
+
+
{{ $company }}
+ {{ range where $.Site.Data.experience "company" $company }}
+
+
+ {{ .name }}
+ {{ .date }}
+
{{ .details | markdownify }}
+
+ {{ end }}
+
+{{ end }}
+
\ No newline at end of file
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..d38d7a6
--- /dev/null
+++ b/layouts/partials/footer.html
@@ -0,0 +1,6 @@
+Last updated on {{ .Site.Params.dateUpdated }}
+This page is print friendly, you can print via your browser or
Download
+
+Contact me on
Linkedin
+| See, this project at
GitLab
+| Checkout my
Website
\ No newline at end of file
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..2e96a53
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,10 @@
+
+{{ if .Site.Params.display.avatar }}
+
+{{ end }}
\ No newline at end of file
diff --git a/layouts/partials/interests.html b/layouts/partials/interests.html
new file mode 100644
index 0000000..4f4b44c
--- /dev/null
+++ b/layouts/partials/interests.html
@@ -0,0 +1,8 @@
+
+
Interests
+
+ {{ range .Site.Data.features.interests }}
+
{{.}}
+ {{ end }}
+
+
\ No newline at end of file
diff --git a/layouts/partials/languages.html b/layouts/partials/languages.html
new file mode 100644
index 0000000..3cc4951
--- /dev/null
+++ b/layouts/partials/languages.html
@@ -0,0 +1,12 @@
+
+
Languages
+ {{ range .Site.Data.features.languages }}
+
+
{{ .name }}
+ - {{ .level }}
+ {{ range .certificates }}
+ {{.}}
+ {{ end }}
+
+ {{ end }}
+
\ No newline at end of file
diff --git a/layouts/partials/objective.html b/layouts/partials/objective.html
new file mode 100644
index 0000000..cc02a0a
--- /dev/null
+++ b/layouts/partials/objective.html
@@ -0,0 +1,8 @@
+
+
Objective
+
+ {{ range .Site.Data.features.about }}
+ {{ .details }}
+ {{ end }}
+
+
\ No newline at end of file
diff --git a/layouts/partials/skills.html b/layouts/partials/skills.html
new file mode 100644
index 0000000..0321b99
--- /dev/null
+++ b/layouts/partials/skills.html
@@ -0,0 +1,8 @@
+
+
Skills
+
+ {{ range .Site.Data.features.skills }}
+
{{.}}
+ {{ end }}
+
+
\ No newline at end of file
diff --git a/layouts/partials/skills_grouped.html b/layouts/partials/skills_grouped.html
new file mode 100644
index 0000000..e33c719
--- /dev/null
+++ b/layouts/partials/skills_grouped.html
@@ -0,0 +1,11 @@
+
+
Skills
+ {{ range .Site.Data.features.skillsGrouped }}
+
+
{{ .groupName }}
+ {{ range .skills }}
+ {{.}}
+ {{ end }}
+
+ {{ end }}
+
\ No newline at end of file
diff --git a/layouts/partials/wip/papers.html b/layouts/partials/wip/papers.html
new file mode 100644
index 0000000..e69de29
diff --git a/layouts/partials/wip/projects.html b/layouts/partials/wip/projects.html
new file mode 100644
index 0000000..e69de29
diff --git a/static/Resume_MERT BAKIR.pdf b/static/Resume_MERT BAKIR.pdf
new file mode 100644
index 0000000..c94527d
Binary files /dev/null and b/static/Resume_MERT BAKIR.pdf differ
diff --git a/static/avatar.jpg b/static/avatar.jpg
new file mode 100644
index 0000000..00f6159
Binary files /dev/null and b/static/avatar.jpg differ
diff --git a/theme.toml b/theme.toml
new file mode 100644
index 0000000..5bfa7cd
--- /dev/null
+++ b/theme.toml
@@ -0,0 +1,15 @@
+# theme.toml template for a Hugo theme
+# See https://github.com/gohugoio/hugoThemes#themetoml for an example
+
+name = "Resume A4"
+license = "MIT"
+licenselink = "https://gitlab.com/mertbakir/resume-A4/LICENSE"
+description = " Write your resume in yaml. Simple, easy to use, single page, A4-sized Resume generator."
+homepage = "https://gitlab.com/mertbakir/resume-A4"
+tags = ["resume", "single page", "simple"]
+features = []
+min_version = "0.41.0"
+
+[author]
+ name = "MERT BAKIR"
+ homepage = "https://mertbakir.gitlab.io"
\ No newline at end of file