Added theme back properly
This commit is contained in:
24
themes/hugo-uno/layouts/index.html
Normal file
24
themes/hugo-uno/layouts/index.html
Normal file
@ -0,0 +1,24 @@
|
||||
{{ partial "head.html" . }}
|
||||
<body>
|
||||
{{ partial "sidebar.html" . }}
|
||||
<div class="content-wrapper">
|
||||
<div class="content-wrapper__inner">
|
||||
<section id="main">
|
||||
<div>
|
||||
{{ range first 10 .Data.Pages }}
|
||||
{{ if eq .Type "post" }}
|
||||
{{ .Render "summary"}}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
</br>
|
||||
<h4>
|
||||
<a href="{{ .Site.BaseURL }}/post/">Archive</a>
|
||||
</h4>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
{{ partial "footer.html" .}}
|
||||
{{ partial "script.html" .}}
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user