-
Notifications
You must be signed in to change notification settings - Fork 236
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve the game patches overview page (#6374)
- Loading branch information
Showing
18 changed files
with
68 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
layout: page | ||
title: Balance snippet | ||
parent: Development - Changelog | ||
permalink: changelog/balance-snippet | ||
published: true | ||
--- | ||
|
||
_Information about how to structure a balance snippet_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
layout: page | ||
title: Other snippets | ||
parent: Development - Changelog | ||
permalink: changelog/other-snippet | ||
published: true | ||
--- | ||
|
||
_Information about how to structure all other snippets_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,43 @@ | ||
--- | ||
layout: page | ||
title: Patches | ||
has_children: true | ||
permalink: /patches | ||
nav_order: 8 | ||
--- | ||
|
||
# All Game Patches | ||
# Overview of game patches | ||
|
||
<ul style="columns: 2"> | ||
|
||
|
||
## Deployment branches | ||
|
||
<ul> | ||
<li> | ||
<a class="preview-title" href="fafbeta">FAF Beta Balance</a> | ||
</li> | ||
<li> | ||
<a class="preview-title" href="fafdevelop">FAF Develop</a> | ||
</li> | ||
</ul> | ||
|
||
## Past game patches | ||
|
||
<ul> | ||
{% assign last_year = false %} | ||
{% for post in site.posts %} | ||
|
||
{% assign current_year = post.date | date: "%Y" %} | ||
{% if last_year != current_year %} | ||
{% assign last_year = current_year %} | ||
<h2 id="{{current_year}}"> | ||
{{ current_year }} | ||
</h2> | ||
{% endif %} | ||
|
||
<li> | ||
<a class="preview-title" href="{{ post.url }}">{{ post.title }}</a> | ||
<span>{{ post.date | date: "%b %d %Y" }}</span> | ||
<span>{{ post.date | date: "%b %Y" }}</span> | ||
</li> | ||
{% endfor %} | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
--- | ||
layout: page | ||
title: Open changes on FAF Develop | ||
permalink: changelog/fafdevelop | ||
title: FAF Beta Balance | ||
permalink: patches/fafbeta | ||
nav_order: 1 | ||
parent: Changelog | ||
parent: Patches | ||
--- | ||
|
||
<!-- | ||
This is a template, content is appended automatically based on changelog snippets. | ||
--> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
--- | ||
layout: page | ||
title: Open changes on FAF Beta Balance | ||
permalink: changelog/fafbeta | ||
title: FAF Develop | ||
permalink: patches/fafdevelop | ||
nav_order: 2 | ||
parent: Changelog | ||
parent: Patches | ||
--- | ||
|
||
<!-- | ||
This is a template, content is appended automatically based on changelog snippets. | ||
--> | ||
|