Lilian Jónsdóttir
3dbd5a86e2
- split many parts of RenderTemplate into their own functions so they can be used individually - move web apps into their own page, add projects page, both generated by executing links.tmpl with their own yaml data - handle / specially, generating LinkMap from Handlers
22 lines
541 B
Cheetah
22 lines
541 B
Cheetah
{{- template "base" . -}}
|
|
|
|
{{- define "content" }}
|
|
<img src="static/img/moemoe.png">
|
|
<div id="header">
|
|
<!-- <h1>燃え 萌え</h1> -->
|
|
<h2>burning.moe</h2>
|
|
</div>
|
|
<a href="http://www.pixiv.net/member_illust.php?mode=medium&illust_id=22647957">
|
|
<img src="static/img/burningmoe.jpg" style="max-width:400px;" />
|
|
</a>
|
|
<br />
|
|
<span id="words">
|
|
<!--
|
|
<a href="about">about</a>
|
|
-->
|
|
{{ range (index .LinkMap "Pages")}}
|
|
<a href="{{ .Href }}">{{ .Text }}</a><br />
|
|
{{ end }}
|
|
</span>
|
|
{{ end -}}
|