forked from website/openpower.foundation
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
| {{ partial "header.html" . }}
 | |
| {{ partial "navbar.html" . }}
 | |
| <main id="lost">
 | |
| <section id="lost">
 | |
| <div class="container">
 | |
| 	<div class="section-header">
 | |
| 		<h3 class="section-title">{{ .Title }}</h3>
 | |
| 		<p class="section-description">{{ .Content }}</p>
 | |
| 	</div>
 | |
| 	<div class="row">
 | |
| 		<p>Maybe you're looking for this :</p>
 | |
| 		{{ range $.Site.Data.fourofour.alternatebuttons }}
 | |
| 			<div class="col-lg-3"><a class="btn btn-outline-primary" href="{{ .link | relURL }}">{{ .title }}</a></div>
 | |
| 		{{ end }}
 | |
| 	</div>
 | |
| 	<div class="row"> </div>
 | |
| 	<div class="row">
 | |
| 		<div class="col-lg-1"> </div>
 | |
| 		<div class="col-lg-10 col-lg-offset-4 text-center text-center">
 | |
| 			{{ $logoimagefile := "img/openpower-logo.png" }}
 | |
| 			{{ $logoimageresource := resources.Get $logoimagefile }}
 | |
| 			{{ $404imagefile := "img/powerlinuxlaptop.png" }}
 | |
| 			{{ $404imageresource := resources.Get $404imagefile }}
 | |
| 			{{ $404imageoverlay := $404imageresource.Filter (images.Overlay $logoimageresource 15 15) }}
 | |
| 			{{ $404image := $404imageoverlay.Fit "800x800 webp" }}
 | |
| 			<div class="gallery-item wow fadeInUp"><img src="{{ $404image.RelPermalink }}" alt="404"></div>
 | |
| 		</div>
 | |
| 		<div class="col-lg-1"> </div>
 | |
| 	</div>
 | |
| </div>
 | |
| </section>
 | |
| </main>
 | |
| <div class="container"> </div>
 | |
| {{ partial "footer.html" . }}
 |