1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {{ partial "header.html" . }}
- <main id="content" role="main">
- <article itemscope itemtype="http://schema.org/BlogPosting">
- <h1 class="p-name entry-title" itemprop="headline name">
- <a href="{{ .RelPermalink }}">{{ .Title }}</a></h1>
- <small>
- <span class="dateline">Posted: <time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time></span>
- | More posts about
- {{ range .Params.tags }}
- <a class="tag p-category" href="/tags/{{ . | urlize }}.html" rel="tag">
- {{ . }}
- </a>
- {{ end }}
- </small>
- <div class="e-content entry-content" itemprop="entry-text">
- {{ .Content }}
- </div>
- <aside class="postpromonav">
- <nav>
- <ul class="pager clearfix">
- {{ with .PrevInSection }}
- <li class="previous">
- <a href="{{ .RelPermalink }}" rel="prev" title="{{ .Title }}">← Previous post</a>
- </li>
- {{ end }}
- {{ with .NextInSection }}
- <li class="next">
- <a href="{{ .RelPermalink }}" rel="next" title="{{ .Title }}">Next post →</a>
- </li>
- {{ end }}
- </ul>
- </nav>
- </aside>
- <section class="comments">
- {{ partial "comments.html" . }}
- </section>
- </article>
- </main>
- {{ partial "footer.html" . }}
|