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

intro.html « partials « layouts - github.com/jacobsun/edidor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e360b0720fe75bb9517cd6cc737ab123ff4c3aca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="intro">
    {{ partial "logo.html" .}}
    <h2>
        {{ with .Param "title" }}
        {{ . }}
        {{ else }}
        {{ .Site.Title }}
        {{ end }}
    </h2>
    <p>
        {{ with .Param "description" }}
        {{ . | safeHTML }}
        {{ end }}
    </p>
</div>