2021-02-13 16:43:55 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
<!-- Header -->
|
|
|
|
{{ partial "header" . }}
|
|
|
|
|
2017-02-20 00:49:02 +00:00
|
|
|
<div class="container">
|
2021-02-13 16:43:55 +00:00
|
|
|
<section id="projects">
|
|
|
|
<h4 class="my-5">{{ .Site.Data.projects.name }}</h4>
|
|
|
|
<div class="panel">
|
|
|
|
<div class="panel-body">
|
|
|
|
{{ range $el := .Site.Data.projects.source }}
|
|
|
|
<h5>
|
|
|
|
<i class="{{ .icon }}"></i>
|
|
|
|
<b><a href="{{ .url }}">{{ $el.name }}</a></b> - {{ $el.description }}
|
|
|
|
</h5>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2017-02-20 00:49:02 +00:00
|
|
|
</div>
|
2021-02-13 16:43:55 +00:00
|
|
|
</section>
|
2017-02-20 00:49:02 +00:00
|
|
|
</div>
|
2021-02-13 16:43:55 +00:00
|
|
|
{{ end }}
|