mirror of
				https://github.com/gohugoio/hugo.git
				synced 2024-05-11 05:54:58 +00:00 
			
		
		
		
	- Convert config.yaml to config.toml to follow what "hugo new site /path/to/site" generates - Rename layouts/chrome to layouts/partials - Convert "template" calls to "partial" calls - Minor revisions to the text in example content - Upgrade Bootswatch Yeti theme (3.1.1+1 → to 3.2.0+3) - Upgrade Font Awesome (4.0.3 → 4.2.0) - Upgrade jQuery (1.11.0 → 1.11.1)
		
			
				
	
	
		
			20 lines
		
	
	
		
			450 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			450 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ partial "header.html" . }}
 | 
						|
<body>
 | 
						|
{{ partial "navbar.html" . }}
 | 
						|
<div class="container">
 | 
						|
    <div class="row">
 | 
						|
        <div class="col-md-9">
 | 
						|
        {{ range first 10 .Data.Pages }}
 | 
						|
            {{ .Render "summary" }}
 | 
						|
        {{ end }}
 | 
						|
        </div>
 | 
						|
 | 
						|
        <!-- Sidebar -->
 | 
						|
        <div class="col-md-3">
 | 
						|
        {{ partial "menu.html" . }}
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
{{ partial "footer.copyright.html" . }}
 | 
						|
</div>
 | 
						|
{{ partial "footer.html" . }}
 |