Skip to content

Commit abc1f16

Browse files
authored
Merge pull request #11 from BastienGermond/refactor-jekyll-posts-and-add-rss
Refactor jekyll posts and add rss
2 parents 918b4b6 + 3e81ed5 commit abc1f16

File tree

5 files changed

+44
-4
lines changed

5 files changed

+44
-4
lines changed

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ title: GCC Front-End For Rust
22
description: Alternative Rust Compiler for GCC
33
logo: /images/logo.png
44
theme: jekyll-theme-minimal
5+
plugins:
6+
- jekyll-feed

reporting/2022-10-monthly-report.md renamed to _posts/2022-11-01-2022-10-monthly-report.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
---
2+
layout: post
3+
title: "October 2022 monthly report"
4+
author: Philip Herron and Arthur Cohen
5+
tags:
6+
- monthly-report
7+
---
8+
19
## Overview
210

311
Thanks again to [Open Source Security, inc](https://opensrcsec.com/) and

reporting/2022-11-monthly-report.md renamed to _posts/2022-12-01-2022-11-monthly-report.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
---
2+
layout: post
3+
title: "November 2022 monthly report"
4+
author: Philip Herron and Arthur Cohen
5+
tags:
6+
- monthly-report
7+
---
8+
19
## Overview
210

311
Thanks again to [Open Source Security, inc](https://opensrcsec.com/) and

reporting/2022-year-report.md renamed to _posts/2023-01-01-2022-year-report.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
---
2+
layout: post
3+
title: "2022 Yearly report"
4+
author: Philip Herron and Arthur Cohen
5+
tags:
6+
- yearly-report
7+
---
8+
19
# Overview
210

311
Thanks again to [Open Source Security, inc](https://opensrcsec.com/) and

index.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
## GCC Front-End For Rust
1+
---
2+
layout: default
3+
title: GCC Front-End For Rust
4+
---
5+
6+
# GCC Front-End For Rust
27

38
This is a full alternative implementation of the Rust language on top of GCC with the goal to become fully upstream with the GNU toolchain.
49

@@ -10,9 +15,14 @@ You can find compiler status reports over on: [https://github.com/Rust-GCC/Repor
1015

1116
## Status reports
1217

13-
* [2022 Yearly report](/reporting/2022-year-report.md)
14-
* [November 2022 monthly report](/reporting/2022-11-monthly-report.md)
15-
* [October 2022 monthly report](/reporting/2022-10-monthly-report.md)
18+
{% assign sorted_posts = site.posts | sort: "date" | reverse %}
19+
<ul>
20+
{% for post in sorted_posts %}
21+
<li>
22+
<a href="{{ post.url }}">{{ post.title }}</a>
23+
</li>
24+
{% endfor %}
25+
</ul>
1626

1727
### FAQ
1828

@@ -46,3 +56,7 @@ As this is destined to be upstreamed to GCC we require copyright assignment: [ht
4656
* Github: [https://github.com/Rust-GCC](https://github.com/Rust-GCC)
4757
* Zulip: [https://gcc-rust.zulipchat.com/](https://gcc-rust.zulipchat.com/)
4858
* Twitter: [https://twitter.com/gcc_rust](https://twitter.com/gcc_rust)
59+
60+
### RSS
61+
62+
You can stay updated on our progress with this [RSS feed](/feed.xml).

0 commit comments

Comments
 (0)