mirror of
				https://github.com/ItsDrike/itsdrike.com.git
				synced 2025-11-04 04:06:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			723 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			723 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!-- Obtain "dateformat" from scratchpad (or fall back to default) -->
 | 
						|
{{ if not (.Scratch.Get "dateformat") }}
 | 
						|
{{ .Scratch.Set "dateformat" "Jan 02, 2006" }}
 | 
						|
{{ end }}
 | 
						|
{{ $dateformat := .Scratch.Get "dateformat" }}
 | 
						|
<!-- Reset scratchpad for next use (in next page) - avoids using old values -->
 | 
						|
{{ .Scratch.Set "dateformat" nil }}
 | 
						|
 | 
						|
 | 
						|
<a class="item-link" href="{{ .RelPermalink }}">
 | 
						|
    <span class="item-title">{{ .Title }}</span>
 | 
						|
    {{ if not .Date.IsZero }}
 | 
						|
    <span class="item-day">{{ .Date.Format $dateformat }}</span>
 | 
						|
    {{ end }}
 | 
						|
</a>
 | 
						|
<small class="item-details">{{ partial "content-details.html" . }}</small>
 | 
						|
<!-- TODO: Only show summary on hover? -->
 | 
						|
<p class="item-summary">{{ partial "summary.html" . }}</p>
 |