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

portfolio.html « partials « layouts - github.com/curttimson/hugo-theme-dopetrope.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8fc6c2c24306bde4825b2d118fb633056b7ea717 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- Portfolio -->
<section id="portfolio">
    <header class="major">
        <h2>My Portfolio</h2>
    </header>
    <div class="row">
        {{ range where .Data.Pages "Type" .Site.Params.Portfolio.foldername }}
        <div class="4u 12u(mobile)">
            <section class="box">
                <a href="{{ .Permalink }}" class="image featured"><img src="{{ .Params.thumbnail }}" alt="" /></a>
                <header>
                    <h3>{{ .Title }}</h3>
                </header>
                <p>{{ .Description }}</p>
                <footer>
                    <a href="{{ .Permalink }}" class="button alt">Find out more</a>
                </footer>
            </section>
        </div>
        {{ end }}
    </div>
</section>