first!
This commit is contained in:
commit
cf7a27bfa1
225 changed files with 3580 additions and 0 deletions
16
layouts/ae/list.html
Normal file
16
layouts/ae/list.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{{ define "main" }}
|
||||
<main>
|
||||
<article>
|
||||
{{ if or .Title .Content }}
|
||||
<div>
|
||||
{{ with .Title }}<h2 class="title">{{ . }}</h2>{{ end }}
|
||||
{{ with .Content }}<div>{{ . }}</div>{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
{{ range sort (where .Site.RegularPages.ByTitle "Section" "ae" ) }}
|
||||
{{ .Render "summary" }}
|
||||
{{ end }}
|
||||
</article>
|
||||
</main>
|
||||
{{ end }}
|
||||
7
layouts/ae/summary.html
Normal file
7
layouts/ae/summary.html
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<a href="{{ .Permalink }}">
|
||||
<div class="tip" style="background:linear-gradient(to right, rgba(46,47,49,1.0), rgba(46, 47, 49, 0)), url({{ index (.Param "images") 0 }});">
|
||||
<div class="tip-content">
|
||||
{{ .Param "shorttitle" }}
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
Loading…
Add table
Add a link
Reference in a new issue