-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
53 lines (47 loc) · 2.33 KB
/
about.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
layout: default
title: About IT3 Consultants' Blog
description: Detail about the company and people involved with this blog
type: AboutPage
author: gratien
---
<h1>About this blog</h1>
<p>This blog is a place to our department share some ideas, solutions, events, etc.</p>
<section class="credits" itemprop="provider" itemscope itemtype="http://schema.org/Organization">
<h2>Sponsor</h2>
<p>
This blog is sponsored by <a href="https://www.it3.be" itemprop="url"><span itemprop="name">IT3 Consultants</span></a>.
</p>
<h2>Contributors</h2>
<ul id="contributors">
{% for contributor in site.authors %}
<li id="{{ contributor[0] }}" itemprop="employee" itemscope itemtype="http://schema.org/Person">
<div class="member_info">
<div class="member_image"><img itemprop="image" src="https://secure.gravatar.com/avatar/{{ contributor[1].gravatar }}?s=100&d=mm" alt="{{ contributor[1].name }}"></div>
<div class="member_name"><span itemprop="name">{{ contributor[1].name }}</span></div>
<div class="member_sites">
{% if contributor[1].github %}
<a itemprop="url" href="https://github.com/{{ contributor[1].github }}"><img src="{{ site.url }}/images/github.png" alt="GitHub Profile"></a>
{% endif %}
{% if contributor[1].twitter %}
<a itemprop="url" href="https://twitter.com/{{ contributor[1].twitter }}"><img src="{{ site.url }}/images/twitter.png" alt="Twitter Profile"></a>
{% endif %}
{% if contributor[1].linkedin %}
<a itemprop="url" href="http://www.linkedin.com/in/{{ site.authors[page.author].linkedin }}"><img src="{{ site.url }}/images/linkedin.png" alt="Linkedin Profile"></a>
{% endif %}
</div>
<div class="member_position">Work as <span itemprop="jobTitle">{{ contributor[1].position }}</span>, since <time datetime="{{ contributor[1].start_date | date:"%Y-%m-%d" }}">{{ contributor[1].start_date | date:"%B, %Y" }}</time>.</div>
<div class="member_description">{{ contributor[1].about }}</div>
</div>
<div class="member_posts">
<h3>User Posts</h3>
<ul>
{% for post in site.posts %}{% if post.author == contributor[0] %}
<li><a href="{{ post.url }}">{{ post.title }}</a> (<time datetime="{{ post.date | date:"%Y-%m-%d" }}">{{ post.date | date:"%B %d, %Y" }}</time>)</li>
{% endif %}{% endfor %}
</ul>
</div>
</li>
{% endfor %}
</ul>
</section>