Welcome to mirror list, hosted at ThFree Co, Russian Federation.

preview-post.html « partials « layouts - github.com/mdashx/basicwebtheme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3571a7b2849dd4661869ef448322c972abccd6d8 (plain)
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
{{ if  isset  . "full" }}
{{ if .full }}

<!-- Show full post -->

{{ if .page.PublishDate }}

<!-- ...link with publish date -->

<h2>{{ .page.Title }}</h2>

<a href={{ .page.Permalink }}>
  <em>{{ .page.PublishDate.Format "January 2, 2006" }}</em>
</a>

{{ else }}

<!-- link with NO publish date -->

<a href={{ .page.Permalink }}>
  <h2>{{ .page.Title }}</h2>
</a>

{{ end }}

<!-- /end link -->

<div class="list-content">
  {{ .page.Content }}
</div>

{{ end }}

<!-- /end full post -->

{{ else }}

<!-- Show truncated post -->

{{ if .PublishDate }}

<!-- ...link with publish date -->

<em>{{ .Title }}</em><span> - </span>

<a href={{ .Permalink }}>
  <em>{{ .PublishDate.Format "January 2, 2006" }}</em>
</a>



<!-- ...link with NO publish date -->

{{ else }}

<a href={{ .Permalink }}>
  <em>{{ .Title }}</em>
</a>

{{ end }}

<!-- /end link -->

{{ .Content | truncate 200 }}

{{ end }}

<!-- /end truncated post -->

<hr />