25 lines
		
	
	
		
			800 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			800 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
|     {{ 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>
 |