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: 81af322c1007c2c64e6ad193a91c55eab4ef1a0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!-- This file contains 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" }}
        <!-- <br/> this will make the categories go to the second line and mess with the title -->
        <!-- in order to make category URLs work, we need to urlize them and then 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>