{{ define "title" }}{{ .Title }}{{ end }}

{{ define "main" }}
    <main>
    	{{ partial "article-meta.html" . }}

        {{ if .Params.toc }}
            {{ .TableOfContents }}
        {{ end }}

        {{ if templates.Exists "partials/pre-content.html" }}
        	{{ partial "pre-content.html" . }}
        {{ end }}

        {{ .Content }}

        <p>

        	{{ with .NextInSection }}
        		<b>Next: </b><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
        		<br>
        	{{ end }}

        	{{ with .PrevInSection }}
        		<b>Previous: </b><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
        		<br>
        	{{ end }}

          <b><a href="/"> >> Home</a></b>
    	</p>

    </main>
{{ end }}