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

post_header.html « partials « layouts - github.com/parsiya/Hugo-Octopress.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b2bedebbb4edee53daeadf785be089105c82f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- Partial that geenrates the header/title for each post -->

<header>
    <p class="meta">{{ .Date.Format "Jan 2, 2006" }}
        {{ if not .Site.Params.disableReadingTime }} - {{ .ReadingTime }} minute read {{ end }}
        {{ if .Site.DisqusShortname }} - <a href="{{ .Permalink }}#disqus_thread">Comments</a>{{ end }}

        {{ if isset .Params "categories" }}
        <!-- in order to make category URLs work, we need to urlize them and
             convert them to lowercase 
             e.g. .NET Remoting -urlize-> .NET-Remoting -lowercase-> .net-remoting -->
            - {{ range .Params.categories }}<a class="label" href="{{ "/categories/" | absURL }}{{ . | urlize | lower }}/">{{ . }} </a>{{ end }}
        {{ end }}
    </p>
    <h1 class="entry-title">
        {{ if ($.Scratch.Get "isHome") }}<a href="{{ .Permalink }}">{{ .Title }}</a>{{ else }} {{ .Title }} {{ end }}
    </h1>
</header>