hugo-sustain/layouts/_default/projects.html

21 lines
560 B
HTML
Raw Normal View History

{{ define "main" }}
<!-- Header -->
{{ partial "header" . }}
2017-02-20 00:49:02 +00:00
<div class="container">
<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>&nbsp;&nbsp;
<b><a href="{{ .url }}">{{ $el.name }}</a></b>&nbsp;-&nbsp;{{ $el.description }}
</h5>
{{ end }}
</div>
2017-02-20 00:49:02 +00:00
</div>
</section>
2017-02-20 00:49:02 +00:00
</div>
{{ end }}