The current Hugo theme for the beetbox.io website
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.
|
|
|
<a class="article-link" href={{ printf "/%s/%s" "authors" (.Params.name | urlize) }}>
|
|
|
|
<article class="card-alternate shadow float-on-hover">
|
|
|
|
<div>
|
|
|
|
{{ with .Resources.GetMatch "avatar" }}
|
|
|
|
<img class="shadow" src="{{ .RelPermalink }}" alt="{{ .Params.alt }}"/>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h2>{{ .Params.name }}</h2>
|
|
|
|
<p>{{ .Params.bio }}</p>
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</a>
|
|
|
|
|