12 lines
293 B
HTML
12 lines
293 B
HTML
{{ define "main" }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ partial "metadata.html" . }}
|
|
<a
|
|
class="glyph-link"
|
|
href="{{ $.Param "githubURL" }}/commits/{{ $.Param "gitBranch" }}/content/{{ .File.Path }}"
|
|
>
|
|
View post history <i class="fab fa-git-alt"></i>
|
|
</a>
|
|
{{ .Content }}
|
|
{{ end }}
|