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

home_post.html « partials « layouts - github.com/Fastbyte01/KeepIt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45d84b233670d93809db8e437e5a384d1fb8bf62 (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
71
72
73
74
{{ $cdn_url := .Scratch.Get "cdn_url" }}

<div class="post-warp">
    <div class="intro">
        {{ with .Site.Params.avatar}}
        {{ $avatar := .}}
        <div class="avatar">
            <a href="/posts/"> <img src="{{ (printf "%s%s" $cdn_url $avatar)}}"> </a>
        </div>
        {{ end }}
        {{ if or .Params.gravatar.Email (and .Site.Params.gravatar.Email (ne .Params.gravatar.Email false)) }}
        <div class="avatar">
            <a href="/posts/"> <img
                    src="https://www.gravatar.com/avatar/{{ md5 .Site.Params.gravatar.email }}?s=240&d=mp"
                    alt="gravatar"> </a>
        </div>
        {{ end }}

        {{ with .Site.Params.subtitle}}
        <h2 class="description">
            {{ . }}
        </h2>
        {{ end }}

    </div>
    {{ range (.Paginate .Pages).Pages }}
    <article class="post" itemscope itemscope="" itemtype="http://schema.org/Article">

        <header class="post-header">
            <h1 class="post-title" itemprop="name headline"><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
        </header>
        <div class="post-content">
            <!--featured_image-->
            {{ with .Params.featured_image }}
            {{- $img := . -}}
            <p><img src="{{ printf "%s%s" $cdn_url $img }}" class="featured_image"></p>
            {{ end }}
            <!-- end featured_image-->

            {{ .Summary }}
        </div>
        <div class="post-footer">
            <div class="post-meta">
                <span class="post-time">
                    <time datetime={{.Date.Format (.Site.Params.dateFormatToUse | default "2006-01-02") }}
                        itemprop="datePublished">{{ .Date.Format (.Site.Params.dateFormatToUse | default "2 January 2006") }}</time>
                </span>
                in
                {{ with .Params.categories -}}
                <i class="iconfont icon-folder"></i>
                <span class="post-category">
                    {{ range . }}
                    {{- $name := . -}}
                    {{- with $.Site.GetPage "taxonomy" (printf "categories/%s" $name) | default ($.Site.GetPage "taxonomy" (printf "categories/%s" ($name | urlize))) -}}
                    <a href="{{ .Permalink }}"> {{ $name }} </a>
                    {{ end -}}
                    {{ end }}
                </span>
                {{- end }}
            </div>
            {{ with .Params.tags }}
            <div class="post-tags">
                {{ range . }}
                <span class="tag"><a href="{{ "tags/" | absURL }}{{ . | urlize }}/">
                        #{{.}}</a></span>
                {{ end }}
            </div>
            {{ end }}
        </div>
    </article>
    {{ end }}

    {{ partial "paginator.html" . }}
</div>