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

github.com/humrochagf/colordrop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHumberto Rocha <humrochagf@gmail.com>2019-08-02 00:56:06 +0300
committerHumberto Rocha <humrochagf@gmail.com>2019-08-02 00:56:06 +0300
commit6f63e4816cbf36ad9740979725cbdd2b3fc02c4f (patch)
tree628c4199797e2b9e591d4494a7fa5b788c0e954d /layouts
parentfee44f48c8493bd50658c9e6067ffa089e19d2cb (diff)
Curriculum content and fix styles on chrome
Diffstat (limited to 'layouts')
-rw-r--r--layouts/curriculum/single.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/layouts/curriculum/single.html b/layouts/curriculum/single.html
index 751b1f7..1ea653a 100644
--- a/layouts/curriculum/single.html
+++ b/layouts/curriculum/single.html
@@ -37,9 +37,64 @@
{{ .Params.languages | markdownify }}
</section>
{{ end }}
+
+ {{ if .Params.techSkills }}
+ <section>
+ <h2>{{ i18n "techskills" }}</h2>
+
+ {{ .Params.techSkills | markdownify }}
+ </section>
+ {{ end }}
+
+ {{ if .Params.softSkills }}
+ <section>
+ <h2>{{ i18n "softskills" }}</h2>
+
+ {{ .Params.softSkills | markdownify }}
+ </section>
+ {{ end }}
+
+ {{ if .Params.openSource }}
+ <section>
+ <h2>{{ i18n "opensource" }}</h2>
+
+ {{ .Params.openSource | markdownify }}
+ </section>
+ {{ end }}
</div>
<div class="right">
+ {{ if .Params.profile }}
+ <section>
+ <h2>{{ i18n "profile" }}</h2>
+
+ <p>{{ .Params.profile | markdownify }}</p>
+ </section>
+ {{ end }}
+
+ {{ if .Params.employment }}
+ <section>
+ <h2>{{ i18n "employment" }}</h2>
+
+ {{ .Params.employment | markdownify }}
+ </section>
+ {{ end }}
+
+ {{ if .Params.education }}
+ <section>
+ <h2>{{ i18n "education" }}</h2>
+
+ {{ .Params.education | markdownify }}
+ </section>
+ {{ end }}
+
+ {{ if .Params.community }}
+ <section>
+ <h2>{{ i18n "community" }}</h2>
+
+ {{ .Params.community | markdownify }}
+ </section>
+ {{ end }}
</div>
</div>
</main>