mirror of
				https://github.com/Clortox/tylerperkins.xyz.git
				synced 2025-07-17 14:42:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			964 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			964 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
<div class="page-header">
 | 
						|
    <h1 data-value="Posts" class="typewriter scramble"></h1>
 | 
						|
    <p>Ideas, projects, and other musings.</p>
 | 
						|
</div>
 | 
						|
{{ range.Pages }}
 | 
						|
    <article>
 | 
						|
        <a href="{{ .Permalink }}">
 | 
						|
            {{ if .Params.banner }}
 | 
						|
            <div class="post-list-body-container">
 | 
						|
            {{ else }}
 | 
						|
            <div class="post-list-body-container full-width">
 | 
						|
            {{ end }}
 | 
						|
                <h4 data-value="{{ .Title }}" id="{{ .Title | anchorize }}" class="post-list-title">{{ .Title }}</h4>
 | 
						|
                <small class="post-list-date">{{ .Date.Format "January 2, 2006" }}</small>
 | 
						|
                <p>{{ .Summary }}</p>
 | 
						|
            </div>
 | 
						|
            {{ if .Params.banner }}
 | 
						|
            <div class="post-list-image-container">
 | 
						|
                    <img src="{{ .Params.banner }}" alt="{{ .Title }}" class="post-list-image" />
 | 
						|
            </div>
 | 
						|
            {{ end }}
 | 
						|
        </a>
 | 
						|
    </article>
 | 
						|
{{ end }}
 | 
						|
{{ end }}
 |