Skip to content

Commit 2682a3d

Browse files
committed
Add Alice to authors, introduce collaborator field
1 parent afc8bf0 commit 2682a3d

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

_data/authors.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,10 @@ robdodson:
2121
web: http://robdodson.me
2222
twitter: rob_dodson
2323
github: robdodson
24+
25+
alice:
26+
full_name: Alice Boxhall
27+
gplus: 111975973972817482025
28+
profile_pic: https://lh5.googleusercontent.com/-nS21Q4tD1R4/AAAAAAAAAAI/AAAAAAAAAp4/ixMudlaPGDs/s40-c/photo.jpg
29+
twitter: sundress
30+
github: alice

_includes/authorship.html

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{% assign author = site.data.authors[page.article.author] %}
2+
{% assign collaborator = site.data.authors[page.article.collaborator] %}
23
{% assign article = page.article %}
34

45
{% assign pubdate = article.published | date: "%Y-%m-%d" %}
@@ -13,7 +14,11 @@
1314
<!-- <a href="https://plus.google.com/{{author.gplus}}?rel=author" target="blank_">![{{author.full_name}} profile pic](//www.google.com/s2/photos/profile/{{author.gplus}}?sz=40 "{{author.full_name}}")</a> -->
1415
<a href="https://plus.google.com/{{author.gplus}}?rel=author" target="blank_">![{{author.full_name}} profile pic]({{author.profile_pic}} "{{author.full_name}}")</a>
1516

16-
By <a href="https://plus.google.com/{{author.gplus}}" target="blank_">{{author.full_name}}</a><br>
17+
{% if article.collaborator %}
18+
<a href="https://plus.google.com/{{collaborator.gplus}}?rel=author" target="blank_">![{{collaborator.full_name}} profile pic]({{collaborator.profile_pic}} "{{collaborator.full_name}}")</a>
19+
{% endif %}
20+
21+
By <a href="https://plus.google.com/{{author.gplus}}" target="blank_">{{author.full_name}}</a> {% if article.collaborator %} and <a href="https://plus.google.com/{{collaborator.gplus}}" target="blank_">{{collaborator.full_name}}</a> {% endif %}<br>
1722
Published <time pubdate datetime="{{pubdate}}">{{article.published | date: "%B %d, %Y"}}</time>
1823
{% if article.updated %}
1924
(updated <time datetime="{{updated}}">{{article.updated | date: "%B %d, %Y"}}</time>)

articles/accessible-web-components.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ title: "Accessible Web Components - Part 1"
77
subtitle: Improving the accessibility of Web Components
88

99
article:
10-
author: addyosmani
10+
author: alice
11+
collaborator: addyosmani
1112
published: 2014-02-04
1213
polymer_version: 0.2.2
1314
description: Techniques for making Web Components accessible

0 commit comments

Comments
 (0)