Add short code + add improve this page button

This commit is contained in:
hossainemruz 2020-06-14 02:46:22 +06:00
parent b18cf1d7cd
commit 9b10cadb58
7 changed files with 66 additions and 4 deletions

View file

@ -20,7 +20,7 @@
<div class="page-content">
<div class="author-profile ml-auto align-self-lg-center">
<img class="rounded-circle" src='{{ partial "helpers/get-author-image.html" . }}'/>
<h5>{{ partial "helpers/get-author-name.html" . }}</h5>
<h5 class="author-name">{{ partial "helpers/get-author-name.html" . }}</h5>
<p>{{ .Page.Date.Format "January 2, 2006" }}</p>
</div>
@ -32,7 +32,15 @@
{{ .Page.Content }}
</div>
<!---Next and Previous Navigator -->
<!--- Improve this page button --->
<div class="btn-improve-page">
<a href="{{ .Site.Params.GitRepo }}/edit/master/content/{{ .File.Path }}">
<i class="fas fa-code-branch"></i>
Improve This Page
</a>
</div>
<!---Next and Previous Navigator -->
<hr />
<div class="row next-prev-navigator">
{{ $currentPage := . }}

View file

@ -0,0 +1,17 @@
<img src="{{ .Get "src"}}"
{{ if .Get "title"}}
alt="{{.Get "title"}}"
{{end}}
{{ if .Get "width"}}
width="{{.Get "width"}}"
{{end}}
{{ if .Get "height"}}
height="{{.Get "height"}}"
{{end}}
{{ if .Get "float"}}
style="float: {{.Get "float"}};"
{{end}}
{{ if .Get "align"}}
class="{{.Get "align"}}"
{{end}}
>

View file

@ -0,0 +1,7 @@
<div class="row">
{{ range $idx, $val := split .Inner "---" }}
<div class="col col-sm-12 col-lg-{{ $.Get $idx }}">
{{ $val | markdownify }}
</div>
{{ end }}
</div>

View file

@ -0,0 +1 @@
<div style="margin-top: {{ .Get 0 }}rem;"></div>