This repository has been archived by the owner on Sep 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
single.html
81 lines (73 loc) · 2.46 KB
/
single.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{{ define "header"}}
{{- partial "_shared/navbar.html" . -}}
{{ end }}
{{ define "main" }}
<div class="main-content">
<!-- Begin Article -->
<div class="container">
<div class="row">
<!-- Post Share -->
<div class="col-md-2 pl-0">
{{- partial "single-partials/share.html" . -}}
</div>
<!-- Post -->
<div class="col-md-9 flex-first flex-md-unordered">
<div class="mainheading">
<!-- Post Title -->
<h1 class="posttitle">{{ title .Title }}</h1>
<!-- Author Box -->
<div class="pb-4">
{{ partial "_shared/author-info" . }}
</div>
</div>
<!-- Post Featured Image -->
{{with .Params.image}}
{{if hugo.IsProduction}}
<img class="featured-image img-fluid" src="https://tgdp.imgix.net{{ . }}?w=802&auto=compress,format" alt="Thumbnail for this post">
{{else}}
<img class="featured-image img-fluid" src="{{ . }}" alt="Thumbnail for this post">
{{end}}
{{end}}
<!-- End Featured Image -->
<!-- Post Content -->
<div class="article-post">
{{ .Content}}
</div>
{{ partial "single-partials/author-follow" . }}
<!-- Article Copyright/License -->
<div class="mb-4">
{{ partial "single-partials/article-copyright-license" . }}
</div>
<!-- Post Tags -->
{{ with .Params.tags }}
<div class="mb-5 card-tags">
<h4 class="mb-2">Tags</h4>
{{ range . }}
<a href='{{ "/tags/" | relLangURL }}{{ . | urlize }}'>{{. | humanize}}</a>
{{ end }}
</div>
{{ end }}
<!-- End Tags -->
<!-- Next and PrevPage inside current section -->
<div class="row PageNavigation d-flex justify-content-between font-weight-bold">
{{with .NextInSection}}
<a class="d-block col-6 mb-2 mb-lg-0" href="{{.Permalink}}"> « {{.Title}}</a>
{{end}}
{{with .PrevInSection}}
<a class="d-block col-6 text-right" href="{{.Permalink}}">{{.Title}} »</a>
{{end}}
<div class="clearfix"></div>
</div>
<!-- End Next and PrevPage -->
</div>
<!-- End Post -->
</div>
</div>
<!-- End Article -->
</div>
{{- partial "_shared/alertbar" . -}}
{{ end }}
{{ define "footer"}}
{{- partial "_shared/jumbotron" . -}}
{{- partial "_shared/footer" . -}}
{{ end }}