37 lines
831 B
HTML
37 lines
831 B
HTML
|
|
{{if .Site.Data.details.featured}}
|
|
<h2>Featured</h2>
|
|
{{ range .Site.Data.details.featured}}
|
|
<section class="featured">
|
|
<a href="{{.href}}">
|
|
<img src="{{.img}}">
|
|
</a>
|
|
<div>
|
|
<a href="{{.href}}">
|
|
<h3>{{.title}}</h3>
|
|
</a>
|
|
<p>{{.description}}</p>
|
|
</div>
|
|
</section>
|
|
{{end}}
|
|
{{end}}
|
|
<hr>
|
|
<h2>Recent Content</h2>
|
|
{{range first 5 .Site.RegularPages}}
|
|
|
|
<section class="recent">
|
|
<a href="{{.Permalink}}">
|
|
{{if .Params.video}}
|
|
<video controls>
|
|
<source src="{{.Params.video}}">
|
|
</video>
|
|
{{else}}
|
|
<img src="{{.Params.image}}">
|
|
{{end}}
|
|
</a>
|
|
<div>
|
|
<a href="{{.Permalink}}"><h2>{{.Title}}</h2></a>
|
|
<p>{{.Params.description}}</p>
|
|
</div>
|
|
</section>
|
|
{{end}}
|