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

_single.html « partials « layouts - github.com/jacobsun/hugo-theme-cole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 550ea05fa28a75469ae64c7e26fc48efd0682ae9 (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
<main class="content">
    <h1 class="title"><a href='{{ .RelPermalink }}' class="btn">{{ .Title }}</a></h1>
    <div class="content">
        {{ if .Content }}
        {{ .Content }}
        {{ else }}
        <p class="no-content">No content.</p>
        {{ end }}
    </div>
    <div class="meta">
        <p class="published-date">
            Published at:                 <time datetime="{{ .Date.Format "2006.01.02" }}">{{ .Date.Format "2006.01.02" }}</time>
        </p>
        {{ with .Params.categories }}
        <p>Categories</p>
        <ul class="categories control">
            {{ range . }}
            <li>
                <a href="{{ "categories" | absURL }}/{{ . | urlize }}/" class="btn">{{ . }}</a>
            </li>
            {{ end }}
        </ul>
        {{ end }}
        {{ with .Params.tags }}
        <p>Tags:</p>
        <ul class="tags control">
            {{ range . }}
            <li>
                <a href="{{ "tags" | absURL }}/{{ . | urlize }}/" class="btn">{{ . }}</a>
            </li>
            {{ end }}
        </ul>
        {{ end }}
    </div>
</main>
{{ partial "comment.html" . }}