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

list.html « _default « layouts - github.com/themefisher/meghna-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10d9e215bd30cf964aa4f3612e18b0ac58d1cf0a (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
{{ partial "header.html" . }}

{{ partial "navigation.html" . }}

{{"<!-- Start Blog Section -->" | safeHTML}}
<section id="blog" class="section">
    <div class="container">
        <div class="row">

            <div class="clearfix">
                {{ range .Data.Pages }}
                {{"<!-- single blog post -->" | safeHTML}}
                <article class="col-md-4 col-sm-6 col-xs-12 clearfix wow fadeInUp" data-wow-duration="500ms">
                    <div class="post-block">
                        <div class="media-wrapper">
                            {{ with .Params.image }}<img src="{{ . | absURL }}" alt="post-image" class="img-responsive">{{ end }}
                        </div>

                        <div class="content">
                            <h3><a href="{{ .Permalink }}">{{ .Title }}</a></h3>
                            <p>{{ .Summary }}</p>
                            <a class="btn btn-transparent" href="{{ .Permalink }}">Read more</a>
                        </div>
                    </div>
                </article>
                {{"<!-- /single blog post -->" | safeHTML}}
                {{ end }}
            </div>
        </div>
    </div>
</section>
{{"<!-- /blog -->" | safeHTML}}

{{ partial "footer.html" . }}