diff --git a/_layouts/author-archive.html b/_layouts/author-archive.html index f2c293f2..364bb8d0 100644 --- a/_layouts/author-archive.html +++ b/_layouts/author-archive.html @@ -9,10 +9,8 @@

Recent Posts

- {% for p in site.posts limit: 10 %} - {% if p.author == page.author %} -

{{ p.title }}

- {% endif %} + {% assign posts = site.posts | where: 'author', page.author %} + {% for p in posts limit: 10 %} +

{{ p.title }}

{% endfor %}
- diff --git a/humans.txt b/humans.txt new file mode 100644 index 00000000..77d1b8b4 --- /dev/null +++ b/humans.txt @@ -0,0 +1,23 @@ +--- +--- +The Bold Report +is made by some truly awesome humans. + +/* Site */ +Designed and Developed by: Timothy B. Smith +Launched: September 23, 2013 +Hosted with: Heroku + +/* Tools */ +MacBook Pro 2016 +Atom +Hyper +Editorial +Jekyll + +/* The Writing Team */ +{% for author in site.data.authors %} +{{ author[1].display_name }} - {{ author[1].email }} +{% endfor %} + +Last Updated: {{ site.time | date:"%Y-%m-%d" }}