valor/layouts/index.html

13 lines
286 B
HTML
Raw Normal View History

2022-08-17 14:47:54 -04:00
<!DOCTYPE html>
<html>
{{partial "head" .}}
<body>
{{partial "profile" .}}
<aside id="posts">
{{range first 10 .Site.RegularPages}}
{{partial "post" .}}
<hr>
{{end}}
</aside>
</body>
</html>