diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2016-08-21 16:32:35 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2016-08-21 16:32:35 +0200 |
| commit | 1f824e6ae5ac39d0cefe0244ea9223c1783494f3 (patch) | |
| tree | b898d60dabde26ace368e1482a6189d5009ae95f /themes/flog/layouts/_default/single.html | |
| download | pragblog-1f824e6ae5ac39d0cefe0244ea9223c1783494f3.tar.gz pragblog-1f824e6ae5ac39d0cefe0244ea9223c1783494f3.zip | |
first commit, dummies
Diffstat (limited to 'themes/flog/layouts/_default/single.html')
| -rw-r--r-- | themes/flog/layouts/_default/single.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/themes/flog/layouts/_default/single.html b/themes/flog/layouts/_default/single.html new file mode 100644 index 0000000..6012d94 --- /dev/null +++ b/themes/flog/layouts/_default/single.html @@ -0,0 +1,13 @@ +{{ partial "header.html" . }} + <div class="white z-depth-1"> + <main role="main" class="container"> + <article itemscope itemtype="http://schema.org/BlogPosting" class=""> + <h1 itemprop="headline" class="header">{{ .Title }}</h1> + <span><time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "02.01.2006" }}</time></span> + <section itemprop="articleBody"> + <p class="flow-text">{{ .Content }}</p> + </section> + </article> + </main> + </div> +{{ partial "footer.html" . }} |
