forked from Git/hugo-story
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			611 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			611 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!-- Banner -->
 | 
						|
<section class="banner {{ .style }}">
 | 
						|
    <div class="content">
 | 
						|
        {{ with .title }}<h1>{{ . }}</h1>{{ end }}
 | 
						|
        {{ with .subtitle }}<p class="major">{{ . | safeHTML }}</p>{{ end }}
 | 
						|
        {{ with .content }}<p>{{ . | safeHTML }}</p>{{ end }}
 | 
						|
        {{ with .button }}<ul class="actions stacked">
 | 
						|
            <li><a href="{{ .link }}" class="button default large wide smooth-scroll-middle">{{ .label }}</a></li>
 | 
						|
        </ul>{{ end }}
 | 
						|
    </div>
 | 
						|
    {{ with .image }}<div class="image">
 | 
						|
        <img src="{{.}}" alt="AGR - Actionable Risk Intelligence"/>
 | 
						|
    </div>{{end}}
 | 
						|
</section> |