This commit is contained in:
Dave Townsend 2017-09-25 12:51:58 -07:00
Родитель 31c87da6ef
Коммит d0a4aca4fe
4 изменённых файлов: 8 добавлений и 7 удалений

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

@ -28,7 +28,7 @@ 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).
{% for post in site.categories.newsletter reversed %}
* [{{ post.title }}]({{ post.url }}): {{ post.description }} [[mailing-list-post]({{ post.mailinglist }})]{% endfor %}
* [{{ post.title }}]({{ site.baseurl }}{{ post.url }}): {{ post.description }} [[mailing-list-post]({{ post.mailinglist }})]{% endfor %}
## Explorations and Experiments

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

@ -1 +1,2 @@
theme: jekyll-theme-minimal
theme: jekyll-theme-minimal
baseurl: /firefox-browser-architecture

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

@ -7,11 +7,11 @@
<title>{{ page.title }}</title>
</head>
<body>
<p>[<a href="..">Back to top</a>]</p>
<p>[<a href="{{ site.baseurl }}">Back to top</a>]</p>
<div class="wrapper">
{{ content }}
</div>
<p>[<a href="..">Back to top</a>]</p>
<p>[<a href="{{ site.baseurl }}">Back to top</a>]</p>
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
</body>
</html>

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

@ -6,13 +6,13 @@ layout: null
<channel>
<title>Mozilla Browser Architecture Newsletters</title>
<description>The published newsletters from the Mozilla Browser Architecture team.</description>
<link>{{ site.url }}</link>
<link>{{ site.url }}{{ site.baseurl }}</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>
<link>{{ site.url }}{{ site.baseurl }}{{ post.url }}</link>
<guid isPermaLink="true">{{ site.url }}{{ site.baseurl }}{{ post.url }}</guid>
<pubDate>{{ post.date }}</pubDate>
</item>
{% endfor %}