|
@@ -15,30 +15,36 @@
|
|
|
<div class="row experience">
|
|
|
<!-- Content -->
|
|
|
<div class="col py-2">
|
|
|
- <div class="card course">
|
|
|
+ <div class="card course">
|
|
|
<div class="card-body">
|
|
|
<div class="float-right text-muted exp-meta">
|
|
|
<div class="text-right">
|
|
|
{{ (time .date_start).Format ($page.Params.date_format | default "Jan 2006") }}
|
|
|
{{ if .date_end}}
|
|
|
- – {{ (time .date_end).Format ($page.Params.date_format | default "Jan 2006") }}
|
|
|
+ – {{ (time .date_end).Format ($page.Params.date_format | default "Jan 2006") }}
|
|
|
{{end}}
|
|
|
</div>
|
|
|
<div class="text-right">
|
|
|
- {{ if .certificate_url }}
|
|
|
- <h6 class="card-title exp-company text-muted my-0">
|
|
|
- <a href="{{.certificate_url}}" target="_blank" rel="noopener">{{ i18n "see_certificate" | default "See certificate" }}</a>
|
|
|
- </h6>
|
|
|
- {{ end }}
|
|
|
- </div>
|
|
|
+ {{ if .certificate_url }}
|
|
|
+ <h6 class="card-title exp-company text-muted my-0">
|
|
|
+ <a href="{{.certificate_url}}" target="_blank" rel="noopener">
|
|
|
+ {{ i18n "see_certificate" | default "See certificate" }}
|
|
|
+ </a>
|
|
|
+ </h6>
|
|
|
+ {{ end }}
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<h4 class="card-title exp-title text-muted mt-0 mb-1">{{.title | markdownify | emojify}}</h4>
|
|
|
<h4 class="card-title exp-company text-muted my-0">
|
|
|
- {{- with .organization_url}}<a href="{{.}}" target="_blank" rel="noopener">{{end}}{{.organization | markdownify | emojify}}{{with .organization_url}}</a>{{end -}}
|
|
|
+ {{- with .organization_url}}<a href="{{.}}" target="_blank" rel="noopener">{{end}}
|
|
|
+ {{.organization | markdownify | emojify}}
|
|
|
+ {{with .organization_url}}</a>{{end -}}
|
|
|
</h4>
|
|
|
- {{with .description}}<div class="card-text">{{. | markdownify | emojify}}</div>{{end}}
|
|
|
+ {{with .description}}
|
|
|
+ <div class="card-text">{{. | markdownify | emojify}}</div>
|
|
|
+ {{end}}
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
{{end}}
|