Convert newsletters to proper posts and add an RSS feed for them.

This commit is contained in:
Dave Townsend 2017-09-22 12:40:29 -07:00 коммит произвёл Joe Walker
Родитель 955d569aa4
Коммит 1bc59339ae
4 изменённых файлов: 28 добавлений и 4 удалений

Просмотреть файл

@ -27,8 +27,8 @@ This is a list of our findings that we're reasonably happy with so far.
We typically send our newsletters to [firefox-dev](https://www.mozilla.org/en-US/about/forums/#firefox-dev).
* [Browser Architecture Update](posts/2017-07-27-browser-architecture-update.md) is the first of our newsletters introducing our work. [[mailing-list-post](https://groups.google.com/forum/#!msg/firefox-dev/ueRILL2ppac/RxR9lLPkAwAJ)]
* [Browser Architecture Newsletter #2](posts/2017-08-24-browser-architecture-newsletter-2.md) is a follow-up with updates on XBL Conversion, Storage and Sync and Workflow Improvements [[mailing-list-post](https://groups.google.com/forum/#!topic/firefox-dev/Rc2w2a9e8HQ)]
{% for post in site.categories.newsletter reversed %}
* [{{ post.title }}]({{ post.url }}): {{ post.description }} [[mailing-list-post]({{ post.mailinglist }})]{% endfor %}
## Explorations and Experiments

Просмотреть файл

@ -1,11 +1,13 @@
---
title: Browser Architecture Update
layout: text
description: The first of our newsletters introducing our work
mailinglist: https://groups.google.com/d/msg/firefox-dev/ueRILL2ppac/RxR9lLPkAwAJ
---
# Browser Architecture Update
[Link to mailing-list archive](https://groups.google.com/d/msg/firefox-dev/ueRILL2ppac/RxR9lLPkAwAJ)
[Link to mailing-list archive]({{ page.mailinglist }})
In the spirit of the Quantum Flow and Photon Newsletters - an update on what the Browser Architecture team is doing:

Просмотреть файл

@ -1,11 +1,13 @@
---
title: Browser Architecture Newsletter 2
layout: text
description: A follow-up with updates on XBL Conversion, Storage and Sync and Workflow Improvements
mailinglist: https://groups.google.com/d/msg/firefox-dev/ueRILL2ppac/RxR9lLPkAwAJ
---
# Browser Architecture Newsletter 2
[Link to mailing-list archive](https://groups.google.com/d/msg/firefox-dev/Rc2w2a9e8HQ/vuJZffViCwAJ)
[Link to mailing-list archive]({{ page.mailinglist }})
Welcome to the second Browser Architecture Newsletter! Since our [last update](https://groups.google.com/forum/#!msg/firefox-dev/ueRILL2ppac/RxR9lLPkAwAJ;context-place=forum/firefox-dev), we have a [new website](https://mozilla.github.io/firefox-browser-architecture/) which includes posts about some of the [problems with XUL](https://mozilla.github.io/firefox-browser-architecture/text/0003-problems-with-xul.html), [extracting Necko](https://mozilla.github.io/firefox-browser-architecture/text/0002-extracting-necko.html) as a standalone component, and [comparing](https://mozilla.github.io/firefox-browser-architecture/text/0004-xbl-web-components.html) XBL with Web Components.

20
newsletters.xml Normal file
Просмотреть файл

@ -0,0 +1,20 @@
---
layout: null
---
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>Browser Architecture</title>
<description>Browser Architecture Newsletters</description>
<link>{{ site.url }}</link>
{% for post in site.categories.newsletter %}
<item>
<title>{{ post.title }}</title>
<description>{{ post.description }}</description>
<link>{{ post.url }}</link>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
<pubDate>{{ post.date }}</pubDate>
</item>
{% endfor %}
</channel>
</rss>