mirror of
				https://github.com/andrewgioia/blog.git
				synced 2025-11-04 01:00:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "title" }}
 | 
						|
  {{ .Title }} – {{ .Site.Title }}
 | 
						|
{{ end }}
 | 
						|
 | 
						|
{{ define "main" }}
 | 
						|
 | 
						|
<main id="post" aria-role="main">
 | 
						|
    <aside>
 | 
						|
        {{ with (.Params.banner) }}
 | 
						|
        <img src="{{ . }}" id="banner">
 | 
						|
        {{ end }}
 | 
						|
        <h1>
 | 
						|
            {{ .Title }}
 | 
						|
        </h1>
 | 
						|
        <time>
 | 
						|
            {{ .PublishDate.Format "January 2, 2006" }}
 | 
						|
        </time>
 | 
						|
    </aside>
 | 
						|
    <article>
 | 
						|
        {{ .Content }}
 | 
						|
    </article>
 | 
						|
</main>
 | 
						|
<footer id="byline">
 | 
						|
    <section id="author" class="border">
 | 
						|
        <i class="icon icon-feather"></i> 
 | 
						|
        <span>Written by {{ .Params.author }}</span>
 | 
						|
        <span>on {{ .PublishDate.Format "January 2, 2006" }}.</span>
 | 
						|
    </section>
 | 
						|
 | 
						|
    {{ with (.Params.tags) }}
 | 
						|
    <ul id="tags" class="tags">
 | 
						|
        {{ range . }}
 | 
						|
            <li>
 | 
						|
                <a href="{{ "tags/" | absURL }}{{ . | urlize }}">{{ . }}</a>
 | 
						|
            </li>
 | 
						|
        {{ end }}
 | 
						|
    </ul>
 | 
						|
    {{ end }}
 | 
						|
    <a id="top" class="arrow back" href="#">To the top!</a>
 | 
						|
</footer>
 | 
						|
 | 
						|
<div id="toc">
 | 
						|
    {{ .TableOfContents }}
 | 
						|
</div>
 | 
						|
 | 
						|
{{ end }} |