Skip to content

Commit 976dd71

Browse files
authored
Support multiple Post Authors (#1793)
1 parent 9d1fc67 commit 976dd71

File tree

66 files changed

+133
-70
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+133
-70
lines changed

_layouts/post.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h1>{{ page.title }}</h1>
1111
{% if page.subtitle %}
1212
<h2>{{ page.subtitle }}</h2>
1313
{% endif %}
14-
<div class="byline">{{ page.date | date: "%B %d, %Y" }}{% if page.author %} &middot; by {{ page.author}}{% endif %} &middot; in {% for category in page.categories %}
14+
<div class="byline">{{ page.date | date: "%B %d, %Y" }}{% if page.authors %} &middot; by {{ page.authors | join: ", " }}{% endif %} &middot; in {% for category in page.categories %}
1515
{% if category == "Elixir in Production" %}
1616
<a class="category" href="/cases.html">{{ category }}</a>
1717
{% else %}

_posts/2012-04-24-a-peek-inside-elixir-s-parallel-compiler.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: A peek inside Elixir's Parallel Compiler
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Internals
67
excerpt: Today, a parallel compiler just landed in Elixir main. The goal of the parallel compiler is to compile files in parallel, automatically detecting dependencies between files. In this blog post, we are going to take a peek into the parallel compiler internals and learn more about Erlang and Elixir in the process.
78
---

_posts/2012-05-25-elixir-v0-5-0-released.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.5.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: We have finally released Elixir v0.5.0! This marks the first release since the language was rewritten. In this blog post, we will discuss what we achieved during this time and what are the next steps!
78

_posts/2012-08-01-elixir-v0-6-0-released.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.6.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: We have finally released Elixir v0.6.0! This release includes a build tool called Mix, support for Erlang typespecs, many improvements to IEx and improved IO, File and Macro support.
78

_posts/2012-10-20-elixir-v0-7-0-released.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.7.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v0.7.0 is released with many improvements! Read on for more information.
78

_posts/2012-11-18-elixir-v0-7-1-released.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.7.1 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v0.7.1 was released to celebrate the end of a two months journey traveling around Europe, United States and Brazil talking about Elixir.
78

_posts/2012-12-04-elixir-v0-7-2-released.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.7.2 released
4-
author: Yurii Rashkovskii
4+
authors:
5+
- Yurii Rashkovskii
56
category: Releases
67
excerpt: Elixir v0.7.2 is released, new, improved type specifications syntax and many other improvements.
78

_posts/2013-01-27-elixir-v0-8-0-released.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.8.0 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: On the last 9th January, we celebrated two years since Elixir's first commit and to celebrate this occasion we have prepared a big release. Elixir v0.8 is out, with documentation, optimizations, bug fixes and shiny new features. Let's take a look at them!
78
---

_posts/2013-04-19-google-summer-of-code-2013.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Google Summer of Code 2013
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Announcements
67
excerpt: Elixir is taking part in Google Summer of Code 2013! Are you a student? Join us!
78
---

_posts/2013-04-29-elixir-v0-8-2-released.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: post
33
title: Elixir v0.8.2 released
4-
author: José Valim
4+
authors:
5+
- José Valim
56
category: Releases
67
excerpt: Elixir v0.8.2 is released with bug fixes, better Erlang R16 support and doctests.
78
---

0 commit comments

Comments
 (0)