Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/mertbakir/resume-a4.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/about-me.html2
-rw-r--r--layouts/partials/awards.html2
-rw-r--r--layouts/partials/certificates.html14
-rw-r--r--layouts/partials/education.html2
-rw-r--r--layouts/partials/experience.html2
-rw-r--r--layouts/partials/interests.html2
-rw-r--r--layouts/partials/languages.html2
-rw-r--r--layouts/partials/skills.html2
-rw-r--r--layouts/partials/skills_grouped.html2
9 files changed, 22 insertions, 8 deletions
diff --git a/layouts/partials/about-me.html b/layouts/partials/about-me.html
index fd860d8..1b32d6a 100644
--- a/layouts/partials/about-me.html
+++ b/layouts/partials/about-me.html
@@ -1,5 +1,5 @@
<div class="section">
- <h1 class="section-title">About Me</h1>
+ <h1 class="section-title">{{ .Site.Params.title_as.about_me }}</h1>
<p>
{{ range .Site.Data.features.about }}
{{ .details }}
diff --git a/layouts/partials/awards.html b/layouts/partials/awards.html
index 75c2732..8ba5d85 100644
--- a/layouts/partials/awards.html
+++ b/layouts/partials/awards.html
@@ -1,5 +1,5 @@
<div class="section">
- <h1 class="section-title">Awards</h1>
+ <h1 class="section-title">{{ .Site.Params.title_as.awards }}</h1>
{{ range .Site.Data.features.awards }}
<div class="item">
<h3 class="item-title">{{ .name }}</h3>
diff --git a/layouts/partials/certificates.html b/layouts/partials/certificates.html
new file mode 100644
index 0000000..646ea68
--- /dev/null
+++ b/layouts/partials/certificates.html
@@ -0,0 +1,14 @@
+<div class="section">
+ <h1 class="section-title">{{ .Site.Params.title_as.certificates }}</h1>
+ {{ range .Site.Data.features.certificates }}
+ <div class="item">
+ <h3 class="item-title">{{ .name }}</h3>
+ {{ if .link }}<a href="{{ .link }}">
+ {{ if $.Site.Params.useFontAwesome }}<i class="fas fa-link"></i>
+ {{else}}&#128279;{{ end }}
+ </a>
+ {{ end }}
+ {{ .issued_by | markdownify }} - {{ .date }}
+ </div>
+ {{ end }}
+</div> \ No newline at end of file
diff --git a/layouts/partials/education.html b/layouts/partials/education.html
index 681e666..03f1316 100644
--- a/layouts/partials/education.html
+++ b/layouts/partials/education.html
@@ -1,5 +1,5 @@
<div class="section">
- <h1 class="section-title">Education</h1>
+ <h1 class="section-title">{{ .Site.Params.title_as.education }}</h1>
{{ range .Site.Data.education }}
<div class="item">
<h3 class="item-title">{{ .name }}</h3>
diff --git a/layouts/partials/experience.html b/layouts/partials/experience.html
index b1068e8..8db7e59 100644
--- a/layouts/partials/experience.html
+++ b/layouts/partials/experience.html
@@ -1,5 +1,5 @@
<div class="section">
- <h1 class="section-title">Experience</h1>
+ <h1 class="section-title">{{ .Site.Params.title_as.experience }}</h1>
{{ $companies := slice }}
{{ range .Site.Data.experience }}
{{ $companies = $companies | append .company }}
diff --git a/layouts/partials/interests.html b/layouts/partials/interests.html
index 4f4b44c..4720d13 100644
--- a/layouts/partials/interests.html
+++ b/layouts/partials/interests.html
@@ -1,5 +1,5 @@
<div class="section">
- <h1 class="section-title">Interests</h1>
+ <h1 class="section-title">{{ .Site.Params.title_as.interests }}</h1>
<div class="item">
{{ range .Site.Data.features.interests }}
<li>{{.}}</li>
diff --git a/layouts/partials/languages.html b/layouts/partials/languages.html
index 3cc4951..12a06a3 100644
--- a/layouts/partials/languages.html
+++ b/layouts/partials/languages.html
@@ -1,5 +1,5 @@
<div class="section">
- <h1 class="section-title">Languages</h1>
+ <h1 class="section-title">{{ .Site.Params.title_as.languages }}</h1>
{{ range .Site.Data.features.languages }}
<div class="item">
<h3 class="item-title">{{ .name }}
diff --git a/layouts/partials/skills.html b/layouts/partials/skills.html
index 0321b99..09a2567 100644
--- a/layouts/partials/skills.html
+++ b/layouts/partials/skills.html
@@ -1,5 +1,5 @@
<div class="section">
- <h1 class="section-title">Skills</h1>
+ <h1 class="section-title">{{ .Site.Params.title_as.skills }}</h1>
<div class="item">
{{ range .Site.Data.features.skills }}
<li>{{.}}</li>
diff --git a/layouts/partials/skills_grouped.html b/layouts/partials/skills_grouped.html
index e33c719..8309cf5 100644
--- a/layouts/partials/skills_grouped.html
+++ b/layouts/partials/skills_grouped.html
@@ -1,5 +1,5 @@
<div class="section">
- <h1 class="section-title">Skills</h1>
+ <h1 class="section-title">{{ .Site.Params.title_as.skills }}</h1>
{{ range .Site.Data.features.skillsGrouped }}
<div class="item">
<h3 class="item-title">{{ .groupName }}</h3>