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

article_hero.html « article « partials « layouts - github.com/forestryio/hugo-theme-novela.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08aefc789720eaa80eb35d06e058d1798f696d74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<section id="articleHero" class="section narrow">
    <div class="article-hero">
        <header class="article-header">
            <h1 class="article-hero-heading">{{ .Page.Params.Title }}</h1>
            <div class="article-hero-subtitle">
                <div class="article-meta">
                    {{ partial "article/article_authors.html" . }}
                    {{ .Page.Date.Format "January 2, 2006" }}
                    {{ with .Page.Params.timetoread }} • {{ . }} min read{{ end }}
                </div>
            </div>
        </header>
        {{ if .Page.Params.hero }}
        <div class="article-hero-image" id="ArticleImage__Hero">
            <img src="{{ .Page.Params.hero }}">
        </div>
        {{ end }}
    </div>
</section>