.github
archetypes
content
data
i18n
layouts
resources
static
themes
educenter-hugo
archetypes
assets
exampleSite
images
layouts
_default
abiturienten
abiturienten-min
about
anmeldung
author
single.html
cantorfora
cantorfora-min
cantorpreis
cantorpreis-min
contact
event
forms
ganztagsangebote
min
notice
pages
pages-nocontent
pages-nocontent-min
partials
schuelerrat
schulchronik
schulchronik-min
teacher
wettbewerbe
404.html
index.html
static
.gitignore
LICENSE
README.md
theme.toml
config.toml
50 lines
1.3 KiB
HTML
50 lines
1.3 KiB
HTML
{{ define "main" }}
|
|
|
|
<section class="section bg-light">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-10 mx-auto">
|
|
<div class="text-center">
|
|
<figure>
|
|
{{ if .Params.Image }}
|
|
<img class="rounded-circle img-fluid mb-4" src="{{.Params.Image | relURL }}">
|
|
{{else if .Params.Email}}
|
|
<img class="rounded-circle img-fluid mb-4" src="https://www.gravatar.com/avatar/{{ md5 .Params.email }}?s=128&pg&d=identicon">
|
|
{{ end }}
|
|
<figcaption>
|
|
<h4 class="font-weight-bold">
|
|
{{ .Title }}
|
|
</h4>
|
|
</figcaption>
|
|
</figure>
|
|
<hr>
|
|
{{ .Content }}
|
|
<hr>
|
|
<ul class="list-inline">
|
|
{{ range .Params.Social }}
|
|
<li class="list-inline-item"><a href="{{ .link | safeURL }}"><i class="{{ .icon }}"></i></a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="title text-center">
|
|
<h2 class="section-title">{{ i18n "posted_by" }} {{ .Title }}</h2>
|
|
</div>
|
|
</div>
|
|
{{ range where .Site.RegularPages "Params.author" (.Title | title) }}
|
|
<div class="col-lg-4 col-sm-6 mb-4">
|
|
{{ .Render "post" }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }} |