<p>, <li>, <button>, <legend>, <caption>, <figcaption> and <quote> elements must not be empty because if they are, some screen readers will have difficulties interpreting their presence. Remove these empty elements from you code or decorate them with the aria-hidden attribute so that the screen readers ignore them.
		
			
				
	
	
		
			14 lines
		
	
	
		
			421 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			421 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
  {{ with .Site.GetPage "/accueil" }}
 | 
						|
    {{ $pages := .Resources.ByType "page" }}
 | 
						|
    {{ range sort $pages "Params.weight" }}
 | 
						|
      <div class="bg{{if isset .Params "bg_colored" }} colored{{end}}">
 | 
						|
        {{ with .File }}<a id="_{{ .BaseFileName }}" class="ancre"></a>{{ end }}
 | 
						|
        <div class="container">
 | 
						|
          {{ .Content }}
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    {{ end }}
 | 
						|
  {{ end }}
 | 
						|
{{ end }}
 |