2019-11-06 16:18:55 +00:00
|
|
|
|
2019-11-03 18:18:08 +00:00
|
|
|
<section class="project-section py-3">
|
|
|
|
|
2023-07-06 10:12:12 +00:00
|
|
|
<h3 class="text-uppercase resume-section-heading mb-4">{{ i18n "publication" }}</h3>
|
2019-11-03 18:18:08 +00:00
|
|
|
|
|
|
|
{{ range .Site.Params.information.list }}
|
|
|
|
<div class="item mb-3">
|
|
|
|
<div class="item-heading row align-items-center mb-2">
|
|
|
|
<h4 class="item-title col-12 col-md-12 col-lg-12 mb-2 mb-md-0">{{ .title }}</h4>
|
|
|
|
</div>
|
|
|
|
<div class="item-content">
|
|
|
|
<p>{{ with .details }}{{ . | markdownify }}{{ end }}</p>
|
|
|
|
<ul class="list-unstyled resume-skills-list">
|
|
|
|
{{ range .items }}
|
|
|
|
<li class="mb-2">{{ with .details }}{{ . | markdownify }}{{ end }}</li>
|
|
|
|
{{ end }}
|
2023-07-06 10:12:12 +00:00
|
|
|
|
2019-11-03 18:18:08 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div><!--//item-->
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
</section><!--//project-section-->
|