This commit is contained in:
gurusabarish
2021-06-13 23:31:04 +05:30
parent 9b47e835d4
commit 69091d3c6a
36 changed files with 162 additions and 479 deletions
+15 -16
View File
@@ -22,46 +22,45 @@
<section style="font-family: 'Roboto', sans-serif; color: #8392a5">
<div class="container">
<div class="row">
<div class="col-md-8 py-4 px-0">
<div class="rounded bg-light text-dark p-3">
<div class="col-md-9 py-4 px-0">
<div class="rounded bg-light p-3 px-md-5" style="background-color: #1A283C !important;">
<h1 class="pb-2 text-center">{{ .Title }}</h1>
<article>
{{.Content}}
</article>
</div>
</div>
<div class="col-md-4 py-4">
<div class="bg-light shadow p-4 rounded mb-2">
<div class="col-md-3 py-4">
<div class="bg-light shadow p-4 rounded mb-2" style="background-color: #1A283C !important;">
<h4>Table of content</h4>
{{.TableOfContents}}
</div>
<div class="bg-light shadow p-4 rounded mt-2">
<div class="bg-light shadow p-4 rounded mt-2" style="background-color: #1A283C !important;">
<h4>Share</h4>
<span class="rounded-circle p-1 m-1">
<a target="blank" class="text-decoration-none"
href="https://twitter.com/share?text={{ .Title }}&url={{ .Site.Params.hostName }}{{ .Permalink | absURL }}">
<i class="fab fa-lg fa-twitter text-primary"></i>
<i class="fab fa-twitter text-primary" style="font-size: 1.6em;"></i>
</a>
</span>
<span class="rounded-circle p-1 m-1 bg-light">
<a target="blank" class="text-decoration-none"
href="mailto:?subject={{ .Title }}&amp;body=Check out this site {{ .Site.Params.hostName }}{{ .Permalink | absURL }}">
<i class="fa fa-lg fa-envelope text-danger"></i>
</a>
</span>
<span class="rounded-circle p-1 m-1 bg-light">
<span class="rounded-circle m-1">
<a target="blank" class="text-decoration-none"
href="https://api.whatsapp.com/send?text={{ .Title }}: {{ .Site.Params.hostName }}{{ .Permalink | absURL }}"
data-action="share/whatsapp/share">
<i class="fab fa-lg fa-whatsapp text-success"></i>
<i class="fab fa-whatsapp text-success" style="font-size: 1.6em;"></i>
</a>
</span>
<span class="rounded-circle m-1">
<a target="blank" class="text-decoration-none"
href="mailto:?subject={{ .Title }}&amp;body=Check out this site {{ .Site.Params.hostName }}{{ .Permalink | absURL }}">
<i class="fa fa-envelope text-danger" style="font-size: 1.6em;"></i>
</a>
</span>
</div>
</div>
{{ template "_internal/disqus.html" . }}
</div>
</div>
</section>