Skip to content

Commit bde256c

Browse files
authored
Merge pull request #12 from netverify/fix-todd-view-posts
fixes todds view posts link
2 parents 6743949 + 2942a16 commit bde256c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

_pages/author-todd-millstein.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: "Todd Millstein"
3+
layout: default
4+
permalink: "/author-todd-millstein.html"
5+
---
6+
<div class="container">
7+
<div class="row justify-content-center">
8+
<div class="col-md-8">
9+
<div class="row align-items-center mb-5">
10+
<div class="col-md-9">
11+
<h2 class="font-weight-bold">{{page.title}} <span class="small btn btn-outline-success btn-sm btn-round"><a href="{{ site.authors.todd.site }}">View</a></span></h2>
12+
<p class="excerpt">{{ site.authors.todd.bio }}</p>
13+
</div>
14+
<div class="col-md-3 text-right">
15+
<img alt="{{ site.authors.todd.name }}" src="{{site.url}}/{{ site.authors.todd.avatar }}" class="rounded-circle" height="100" width="100">
16+
</div>
17+
</div>
18+
<h4 class="font-weight-bold spanborder"><span>Posts by {{page.title}}</span></h4>
19+
{% for post in site.posts %}
20+
{% if post.authors contains "todd" %}
21+
{% include main-loop-card.html %}
22+
{% endif %}
23+
{% endfor %}
24+
</div>
25+
</div>
26+
</div>

0 commit comments

Comments
 (0)