Adding basic structure for press articles pages
This commit is contained in:
24
themes/tsc_vfl/layouts/_default/press.html
Normal file
24
themes/tsc_vfl/layouts/_default/press.html
Normal file
@@ -0,0 +1,24 @@
|
||||
{{ define "main" }}
|
||||
<a name="top">
|
||||
<h1>{{ .Title }}</h1>
|
||||
</a>
|
||||
{{ .Content }}
|
||||
{{ range .Pages.ByPublishDate.Reverse }}
|
||||
<div class="press-article">
|
||||
<div class="title">{{ .Title }}</div>
|
||||
<div class="metadata">
|
||||
<span class="date">{{ .Date.Format "02.01.2006" }}</span>
|
||||
{{ with .Param "source" }}<span class="source">{{ . }}</span>{{ end }}
|
||||
</div>
|
||||
<div class="content">{{ .Content }}</div>
|
||||
</div>
|
||||
<!--<p>
|
||||
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
||||
{{ partial "metadata.html" . }}
|
||||
<a class="summary" href="{{ .RelPermalink }}">
|
||||
<p>{{ .Content }}</p>
|
||||
</a>
|
||||
</p>-->
|
||||
{{ end }}
|
||||
{{ partial "totop" }}
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user