add volunteering section
This commit is contained in:
parent
225b2d9c9f
commit
333a96ce36
2 changed files with 24 additions and 0 deletions
|
@ -27,6 +27,11 @@
|
|||
{{ partial "skills.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{ if .Site.Params.volunteering.enable }}
|
||||
{{ partial "volunteering.html" . }}
|
||||
{{ end }}
|
||||
|
||||
|
||||
</div><!--//main-wrapper-->
|
||||
</div>
|
||||
|
||||
|
|
19
layouts/partials/volunteering.html
Normal file
19
layouts/partials/volunteering.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<section class="section experiences-section">
|
||||
<h2 class="section-title"><span class="icon-holder"><i class="fa {{ .Site.Params.volunteering.icon }}"></i></span>{{ i18n "volunteering" }}</h2>
|
||||
|
||||
{{ range .Site.Params.volunteering.list }}
|
||||
<div class="item">
|
||||
<div class="meta">
|
||||
<div class="upper-row">
|
||||
<h3 class="job-title">{{ .position }}</h3>
|
||||
<div class="time">{{ .dates }}</div>
|
||||
</div><!--//upper-row-->
|
||||
<div class="company">{{ .company }}</div>
|
||||
</div><!--//meta-->
|
||||
<div class="details">
|
||||
<p>{{ with .details }}{{ . | markdownify }}{{ end }}</p>
|
||||
</div><!--//details-->
|
||||
</div><!--//item-->
|
||||
{{ end }}
|
||||
|
||||
</section><!--//section-->
|
Loading…
Reference in a new issue