2019-11-03 18:18:08 +00:00
|
|
|
<section class="project-section py-3">
|
|
|
|
|
|
|
|
<h3 class="text-uppercase resume-section-heading mb-4">{{ i18n "projects" }}</h3>
|
|
|
|
|
|
|
|
{{ range .Site.Params.projects.list }}
|
|
|
|
<div class="item mb-3">
|
|
|
|
<div class="item-heading row align-items-center mb-2">
|
|
|
|
<h4 class="item-title col-12 col-md-6 col-lg-8 mb-2 mb-md-0">
|
2019-11-04 01:16:38 +00:00
|
|
|
<a class="resume-link" href="{{ .url }}" target="_blank">{{ .title }}</a>
|
2019-11-03 18:18:08 +00:00
|
|
|
</h4>
|
|
|
|
<div class="item-meta col-12 col-md-6 col-lg-4 text-muted text-left text-md-right">{{ .meta }}</div>
|
|
|
|
</div>
|
|
|
|
<div class="item-content">
|
|
|
|
<p>{{ .tagline }}</p>
|
|
|
|
</div>
|
|
|
|
</div><!--//item-->
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
</section><!--//project-section-->
|