35 lines
		
	
	
		
			895 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			895 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "main" }}
 | 
						|
 | 
						|
<h1 class="post-title">{{ .Title }}</h1>
 | 
						|
    {{ if .Date }}
 | 
						|
    <time>{{ .Date.Format "January 2, 2006" }}</time>
 | 
						|
    {{ end }}
 | 
						|
    <div>
 | 
						|
        <p>
 | 
						|
        {{ .Content }}
 | 
						|
        </p>
 | 
						|
    </div>
 | 
						|
    {{ template "_internal/disqus.html" . }}
 | 
						|
 | 
						|
    {{ if .Site.Params.enableKofi }}
 | 
						|
 | 
						|
        <script type='text/javascript' src='https://ko-fi.com/widgets/widget_2.js'></script>
 | 
						|
        <script type='text/javascript'>
 | 
						|
            const kofiId = '{{ .Site.Params.Kofi }}';
 | 
						|
            kofiwidget2.init('Support Me on Ko-fi', '#29abe0', kofiId);
 | 
						|
            kofiwidget2.draw();
 | 
						|
        </script> 
 | 
						|
 | 
						|
    {{ end }}
 | 
						|
 | 
						|
    <div class="page-footer">
 | 
						|
        {{if .Params.tags}}
 | 
						|
        <hr class="footer-divider">
 | 
						|
        {{ range .Params.tags }}
 | 
						|
          <a class="tag" href="{{ $.Site.BaseURL }}/tags/{{ . | urlize }}">#{{.}}</a>
 | 
						|
        {{ end }}
 | 
						|
      {{ end }}
 | 
						|
    </div>
 | 
						|
 | 
						|
{{end}}
 |