forked from ruangrupa/lumbung.space
29 lines
465 B
HTML
29 lines
465 B
HTML
|
{{ define "main" }}
|
||
|
|
||
|
|
||
|
<h1>{{ .Params.title }}</h1>
|
||
|
<img src="{{ .Params.photo }}" height="200px" alt=""/>
|
||
|
|
||
|
<h2>Bio</h2>
|
||
|
{{ .Content }}
|
||
|
{{ with .Params.twitter }}
|
||
|
<p>
|
||
|
<a href="https://twitter.com/{{ substr . 1 }}">
|
||
|
Follow {{ $.Params.name }} on Twitter
|
||
|
</a>
|
||
|
</p>
|
||
|
{{ end }}
|
||
|
|
||
|
<h2>Posts by {{ .Params.title }}</h2>
|
||
|
<ul>
|
||
|
{{ range .Pages }}
|
||
|
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
|
||
|
{{ .Render "summary"}}
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
|
||
|
|
||
|
|
||
|
{{end}}
|
||
|
|