Display the Labs page explanation, list up the articles on the Labs page.
This commit is contained in:
parent
d42a8e4085
commit
45c958bcdd
|
@ -0,0 +1,19 @@
|
|||
{{ partial "header.html" . }}
|
||||
|
||||
<!-- Main Section Layout
|
||||
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
||||
<main id="list" role="main">
|
||||
<div class="article-header light-gray"><h1>{{ .Title }}</h1></div>
|
||||
{{.Content}}
|
||||
<br>
|
||||
{{ range .Data.Pages }}
|
||||
<div class="summary">
|
||||
<h2><a href="{{ .Permalink }}">{{ .Title }} {{ if .Draft }}:: DRAFT{{end}}</a></h2>
|
||||
<div class="meta">
|
||||
{{ .Date.Format "Jan 2, 2006" }}: {{.Description}}
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</main>
|
||||
|
||||
{{ partial "footer.html" . }}
|
Loading…
Reference in New Issue