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

footer.html « partials « layouts - github.com/4ever9/less.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 505e6e386ba103c866302580372c9d08881489b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="container">
    <footer>
        <div>Less is More</div>
        <span class="copyright">
            {{ $year := "2020" }}
            {{ $created := $.Site.Params.siteCreated }}
            {{ if and $created (lt $created now.Year) }}
                {{ $year = printf "%d - %d" $created now.Year }}
                {{ else }}
                {{ $year = printf "%d" now.Year }}
            {{ end }}
            © {{ $year }}
        </span>
    </footer>
</div>
<script src="https://cdn.staticfile.org/tocbot/4.11.2/tocbot.min.js"></script>
{{ $built := resources.Get "js/less.js" | js.Build "less.js" }}
<script type="text/javascript" src="{{ $built.RelPermalink }}"></script>