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

title-banner.html « content « partials « layouts - github.com/mmrath/hugo-bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 395e6bbbae27462dda3f798434a17f6991c4fded (plain)
1
2
3
4
5
6
7
8
9
{{ if and (isset .Params "banner") (not (eq .Params.banner "")) }}
<a href="{{ .Permalink }}" itemprop="url">
    {{if or (in (substr .Params.banner 0 7) "http://") (in (substr .Params.banner 0 8) "https://")}}
      <img src="{{ .Params.banner }}" class="img-fluid" alt="Generic responsive image">
    {{ else }}
      <img src="{{ .Site.BaseURL }}{{ .Params.banner }}" class="img-fluid" alt="Generic responsive image">
    {{end}}
</a>
{{ end }}