-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathauthors.html
More file actions
28 lines (25 loc) · 836 Bytes
/
authors.html
File metadata and controls
28 lines (25 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
layout: page
permalink: /authors/index.html
title: Meet our bloggers
description: Authors of posts on the Capgemini Software Engineering Team Blog
tags: [Capgemini, engineering]
chart: true
---
{% assign authors = site.data.authors | sort %}
{% assign rownum = 1 %}
{% for authorloop in authors %}
{% assign author = authorloop[1] %}
{% unless author.ex %}
{% include author-posts-capture.html %}
{% if posts_by_author.size > 0 or presentations_by_author.size > 0 %}
<div class="notepad-author-info row row-{{ rowstyle }}" id="author-{{ author.name | slugify }}">
{% include author-info.html %}
{% include author-posts.html %}
</div>
{% endif %}
{% endunless %}
{% endfor %}
<div class="notepad-author-info row text-center">
<a href="/alumni">Meet our former colleagues</a>
</div>