You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.5 KiB
35 lines
1.5 KiB
<div class='network card'>
|
|
<article class="h-entry network">
|
|
<header>
|
|
<h2 class="p-name"><a href="{{ .Permalink }}" class="u-url">{{ .Title }}</a></h2>
|
|
<div class="header-metadata">
|
|
<time class="dt-published" datetime="{{ .Date.Format `Jan 02 2006` }}">{{ .Date.Format "Jan 02, 2006" }}</time>
|
|
{{ if .Params.author }}
|
|
<div class='author p-author'>{{.Params.author}}</div>
|
|
{{ end }}
|
|
</div>
|
|
</header>
|
|
|
|
<div class="network-source"><span class="from">From:</span><span class="sender"> <b><a href="{{ "/categories/" | relLangURL }}{{ .Params.feed_name | urlize }}">{{ .Params.feed_name }}</a></b></div>
|
|
|
|
<div class="p-summary {{if .Truncated}} truncated {{end}} img" >
|
|
{{ with (index (.Resources.ByType "image") 0) }}
|
|
{{ $thumb := .Fit "540x360"}}
|
|
<div class="summary-image">
|
|
<img src="{{ $thumb.Permalink }}" alt="{{ .Title }}">
|
|
</div>
|
|
{{ end }}
|
|
<div class="summary-text">
|
|
{{ .Summary }}
|
|
</div>
|
|
|
|
</div>
|
|
{{ if .Truncated }}
|
|
<footer class='post-footer'>
|
|
<div class='read-more'><a href="{{ .RelPermalink }}">Read More…</a></div>
|
|
<div class='footer-filler'></div>
|
|
</footer>
|
|
{{ end }}
|
|
|
|
</article>
|
|
</div>
|