mirror of
https://github.com/RdvSpeakers/rdvspeakers-theme-hugo.git
synced 2026-03-10 08:51:19 +00:00
34 lines
821 B
HTML
34 lines
821 B
HTML
{{ define "main" }}
|
|
|
|
{{ $lang := $.Page.Language.Lang }}
|
|
|
|
<div class="hero">
|
|
<h1>{{ $.Page.Params.Title }}</h1>
|
|
<div class="description">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
|
|
<section class="blogs">
|
|
{{ range .Pages }}
|
|
<article>
|
|
<a class="visually-hidden" aria-hidden="true" href="{{ .Permalink }}">{{ .Title }}</a>
|
|
<a class="blog" href="{{ .Permalink }}">
|
|
{{ $img := (replace .Params.image "." "-mini.") }}
|
|
{{ partial "picture" (dict "img" $img "class" "img") }}
|
|
|
|
<div class="info">
|
|
<div class="date">{{ partial "date-short.html" (dict "time" .Date "lang" $lang) }}</div>
|
|
<h2>{{ .Title }}</h2>
|
|
<span class="brief">{{ .Params.brief }}</span>
|
|
<!-- <div class="reading">{{ .ReadingTime }}</div> -->
|
|
<p>{{ .Summary }} ...</p>
|
|
</div>
|
|
</a>
|
|
</article>
|
|
{{ end }}
|
|
</section>
|
|
|
|
|
|
{{ end }}
|