25 lines
		
	
	
		
			447 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			25 lines
		
	
	
		
			447 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
|  | {{ define "main" }} | ||
|  | {{ .Content }} | ||
|  | 
 | ||
|  | <h3>Recent Posts</h3> | ||
|  | 
 | ||
|  | <ul class="blog-posts"> | ||
|  |   {{ range site.RegularPages }} | ||
|  |   <li> | ||
|  |     <span> | ||
|  |       <i> | ||
|  |         <time datetime='{{ .Date.Format "2006-01-02" }}'> | ||
|  |           {{ .Date.Format (default "02 Jan, 2006" .Site.Params.dateFormat) }} | ||
|  |         </time> | ||
|  |       </i> | ||
|  |     </span> | ||
|  |     <a href="{{ .Permalink }}">{{ .Title }}</a> | ||
|  |   </li> | ||
|  |   {{ else }} | ||
|  |   <li> | ||
|  |     No posts yet | ||
|  |   </li> | ||
|  |   {{ end }} | ||
|  | </ul> | ||
|  | {{ end }} |