First Code Journal Entry
So now here we go - my first post to the coding journal! I’ve been using the code from the “Terminal” theme as a jumping off point.
So far I’ve worked on creating a couple static pages (no content just yet) - and a couple of archetypes for this coding journal and collecting information on my motorcycles. I’m curious if I can continue to go deeper on the heirarchy to make the Moto a couple levels deep?
Would also like to learn how to use the shortcodes that this theme come with - I’ll give it a shot!
{{ define "main" }}
{{ if .Content }}
<div class="index-content {{ if .Params.framed -}}framed{{- end -}}">
{{ .Content }}
</div>
{{ end }}
<div class="posts">
{{ $isntDefault := not (or (eq (trim $.Site.Params.contentTypeName " ") "posts") (eq (trim $.Site.Params.contentTypeName " ") "")) }}
{{ $contentTypeName := cond $isntDefault (string $.Site.Params.contentTypeName) "posts" }}
{{ $PageContext := . }}
{{ if .IsHome }}
{{ $PageContext = .Site }}
{{ end }}
{{ $paginator := .Paginate (where $PageContext.RegularPages "Type" "codejournal") }}
{{ range $paginator.Pages }}
<div class="post on-list">
<h1 class="post-title">
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
</h1>
<div class="post-meta">
<span class="post-date">
{{ .Date.Format "2006-01-02" }}
</span>
{{ with .Params.tools }}
<span class="post-author">:: {{ . }}</span>
{{ end }}
</div>
{{ if .Params.Cover }}
<img src="{{ .Params.Cover | absURL }}" class="post-cover" alt="{{ .Title | plainify | default " " }}" />
{{ end }}
<div class="post-content">
{{ .Summary | markdownify }}
</div>
</div>
{{ end }}
{{ partial "pagination.html" . }}
</div>
{{ end }}