Add short code + add improve this page button
This commit is contained in:
parent
b18cf1d7cd
commit
9b10cadb58
7 changed files with 66 additions and 4 deletions
|
@ -10,9 +10,14 @@ markup:
|
||||||
unsafe: true
|
unsafe: true
|
||||||
|
|
||||||
# Enable Google Analytics
|
# Enable Google Analytics
|
||||||
# googleAnalytics: UA-12345
|
googleAnalytics: UA-12345
|
||||||
|
|
||||||
# Enable Disqus forum
|
# Enable Disqus forum
|
||||||
# disqusShortname: does-not-exist
|
disqusShortname: does-not-exist
|
||||||
|
|
||||||
# Enable global emoji support
|
# Enable global emoji support
|
||||||
|
enableEmoji: true
|
||||||
|
|
||||||
|
# Custom parameters
|
||||||
|
params:
|
||||||
|
gitRepo: https://github.com/hossainemruz/toha-example-site
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
<div class="page-content">
|
<div class="page-content">
|
||||||
<div class="author-profile ml-auto align-self-lg-center">
|
<div class="author-profile ml-auto align-self-lg-center">
|
||||||
<img class="rounded-circle" src='{{ partial "helpers/get-author-image.html" . }}'/>
|
<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>
|
<p>{{ .Page.Date.Format "January 2, 2006" }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -32,7 +32,15 @@
|
||||||
{{ .Page.Content }}
|
{{ .Page.Content }}
|
||||||
</div>
|
</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 />
|
<hr />
|
||||||
<div class="row next-prev-navigator">
|
<div class="row next-prev-navigator">
|
||||||
{{ $currentPage := . }}
|
{{ $currentPage := . }}
|
||||||
|
|
17
layouts/shortcodes/img.html
Normal file
17
layouts/shortcodes/img.html
Normal 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}}
|
||||||
|
>
|
7
layouts/shortcodes/split.html
Normal file
7
layouts/shortcodes/split.html
Normal 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>
|
1
layouts/shortcodes/vs.html
Normal file
1
layouts/shortcodes/vs.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<div style="margin-top: {{ .Get 0 }}rem;"></div>
|
|
@ -31,6 +31,10 @@ body {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.author-name {
|
||||||
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
.author-profile img {
|
.author-profile img {
|
||||||
height: 120px;
|
height: 120px;
|
||||||
width: 120px;
|
width: 120px;
|
||||||
|
@ -204,6 +208,10 @@ mark {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-improve-page{
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
.wrapper {
|
.wrapper {
|
||||||
padding-left: 0px;
|
padding-left: 0px;
|
||||||
|
|
|
@ -86,6 +86,22 @@ a:hover {
|
||||||
padding-top: 3.5rem;
|
padding-top: 3.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img.center{
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.left{
|
||||||
|
display: block;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.right{
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
transition: all 0.3s ease-out;
|
transition: all 0.3s ease-out;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue