Create structure for press articles #31
@ -969,6 +969,36 @@ table.time {
|
||||
}
|
||||
}
|
||||
|
||||
.press-articles {
|
||||
margin: 0 0 2em;
|
||||
|
||||
.press-article {
|
||||
border-bottom: solid 1px $color-hor-line;
|
||||
margin: 0 0 3em;
|
||||
padding: 0 0 3em;
|
||||
|
||||
&:nth-last-of-type(1) {
|
||||
border-bottom: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.press-img img {
|
||||
display: block;
|
||||
margin: 1em auto;
|
||||
}
|
||||
|
||||
.metadata {
|
||||
span {
|
||||
display: block;
|
||||
&.date {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.iframe-generic {
|
||||
display: block;
|
||||
width: 100%;
|
||||
|
@ -3,22 +3,17 @@
|
||||
<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 class="press-articles">
|
||||
{{ range .Pages.ByPublishDate.Reverse }}
|
||||
<div class="press-article">
|
||||
<h2 class="title">{{ .Title }}</h2>
|
||||
<div class="metadata">
|
||||
<span class="date">{{ .Date.Format "02.01.2006" }}</span>
|
||||
{{ with .Param "source" }}<span class="source">Quelle: {{ . }}</span>{{ end }}
|
||||
</div>
|
||||
<div class="content">{{ .Content }}</div>
|
||||
</div>
|
||||
<div class="content">{{ .Content }}</div>
|
||||
{{ end }}
|
||||
</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 }}
|
||||
|
7
themes/tsc_vfl/layouts/shortcodes/tsc/press/dld.html
Normal file
7
themes/tsc_vfl/layouts/shortcodes/tsc/press/dld.html
Normal file
@ -0,0 +1,7 @@
|
||||
<!--
|
||||
{{ .Get "url"}}{{ page.Resources}}
|
||||
-->
|
||||
{{ $res := page.Resources.GetMatch (.Get "url") }}
|
||||
<a target="_blank" class="download press-download" href="{{ $res.RelPermalink }}">
|
||||
{{ .Inner }}
|
||||
</a>
|
7
themes/tsc_vfl/layouts/shortcodes/tsc/press/img.html
Normal file
7
themes/tsc_vfl/layouts/shortcodes/tsc/press/img.html
Normal file
@ -0,0 +1,7 @@
|
||||
<!--
|
||||
{{ .Get "src"}}{{ page.Resources}}
|
||||
-->
|
||||
<div class="press-img">
|
||||
{{- $res := page.Resources.GetMatch (.Get "src") -}}
|
||||
<img{{ with .Get "alt" }} alt="{{ . }}"{{ end }} src="{{ $res.RelPermalink }}">
|
||||
</div>
|
Loading…
Reference in New Issue
Block a user