You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
homepage/themes/persona/layouts/partials/author_shortbio.html

20 lines
980 B
HTML

{{ $author := .Site.Params.authors.default }}{{ with .Params.author }}{{ $author := . }}{{ end }}
{{ $authorinfo := index .Site.Params.authors $author }}
<div class="home_single_post">
<div class="post_content_area">
<div class="row">
<div class="col-xs-12 col-sm-8 col-md-8 col-lg-8 col-xs-offset-0 col-sm-offset-2 col-md-offset-2 col-lg-offset-2">
<div class="single_post_content">
<div class="post_author_widgets">
<img src="{{ $authorinfo.avatar }}" alt=""/>
<div>
<h2><a href="{{ $authorinfo.link }}">{{ $authorinfo.name }}</a></h2>
<p>{{ $authorinfo.shortbio | safeHTML }}</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>