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

github.com/parsiya/Hugo-Octopress.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/post_header.html')
-rw-r--r--layouts/partials/post_header.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/layouts/partials/post_header.html b/layouts/partials/post_header.html
new file mode 100644
index 0000000..b65d6cb
--- /dev/null
+++ b/layouts/partials/post_header.html
@@ -0,0 +1,18 @@
+<!-- This file contains the header/title for each post -->
+
+<header>
+ <h1 class="entry-title">
+ {{ if .IsHome }} <a href="{{ .Permalink }}">{{ .Title }}</a> {{ else }} {{ .Title }} {{ end }}
+ </h1>
+ <p class="meta">{{ .Date.Format "Jan 2, 2006" }}
+ {{ if not .Site.Params.disableReadingTime }} - {{ .ReadingTime }} minute read {{ end }}
+ {{ if .Site.Params.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>
+</header>