Skip to content

Commit 8646aeb

Browse files
authored
Merge pull request #648 from system76/add-missing-sections2
Add missing sections
2 parents 547686e + b624a77 commit 8646aeb

12 files changed

+60
-8
lines changed

_articles/log-files.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords:
1111
- support
1212
image: http://support.system76.com/images/system76.png
1313
hidden: false
14-
section: software-applications
14+
section: software-troubleshooting
1515

1616
---
1717

_articles/nvidia-nvs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords:
1010
- NVIDIA
1111
image: http://support.system76.com/images/system76.png
1212
hidden: true
13-
section: software-applications
13+
section: software
1414

1515
---
1616

_articles/open-firmware-smmstore.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords:
1010
- SMMSTORE
1111
image: http://support.system76.com/images/system76.png
1212
hidden: false
13-
section: software-applications
13+
section: software-troubleshooting
1414

1515
---
1616

_articles/pop-shell.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords:
77
- Github
88
image: http://support.system76.com/images/system76.png
99
hidden: false
10-
section: software-applications
10+
section: software
1111
---
1212

1313
#### For Ubuntu-Based Distros

_articles/power-on-failure-desktop.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords:
88
- Io Board
99
image: http://support.system76.com/images/system76.png
1010
hidden: false
11-
section: hardware-drivers
11+
section: hardware-troubleshooting
1212

1313
---
1414

_articles/power-on-failure-laptop.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords:
77
- Laptop
88
image: http://support.system76.com/images/system76.png
99
hidden: false
10-
section: hardware-drivers
10+
section: hardware-troubleshooting
1111

1212
---
1313

_articles/release-schedule.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
---
2+
layout: article
23
title: Release Numbering and Schedule
34
description: >
45
Timing and frequency details.
6+
hidden: false
7+
section: software
8+
59
---
610
Pop!\_OS follows the Ubuntu version numbers and release schedule. The first version, 17.10, shipped on October 19th, 2017. The second release, Pop!\_OS 18.04 LTS, is scheduled for release April 26th, 2018.

_articles/tensorman.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ keywords:
1010
- Tensorman
1111
image: http://support.system76.com/images/system76.png
1212
hidden: false
13-
section: software-applications
1413
redirect_from:
1514
- /articles/install-tensorflow
1615
- /articles/use-tensorflow
1716
- /articles/use-tensorman
17+
section: software
1818

1919
---
2020

_articles/use-docking-station.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ keywords:
1212
image: https://system76.com/images/system76.png
1313
hidden: false
1414
section: general-hardware-info
15+
1516
---
1617

1718
# Docking Station Support

_articles/use-vpn-software.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords:
1010
- ProtonVPN
1111
image: http://support.system76.com/images/system76.png
1212
hidden: false
13-
section: security-encryption
13+
section: software
1414

1515
---
1616

_articles/yubikey-login.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ keywords:
99
image: http://support.system76.com/images/system76.png
1010
hidden: false
1111
section: community
12+
1213
---
1314

1415

index.html

+46
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,52 @@ <h3><a href="{{ article.url | prepend: site.baseurl }}">{{ article.title }}</a><
177177
</div>
178178
</div>
179179

180+
<div class="small-12 columns">
181+
<hr />
182+
<h2 id="media">Media</h2>
183+
184+
<div class="row">
185+
<div class="small-12 columns support-excerpts media">
186+
{% assign articles = site.articles | sort:"title" %}
187+
{% for article in articles %}
188+
{% if article.hidden != true %}
189+
{% if article.section == 'media' %}
190+
<article>
191+
<h3><a href="{{ article.url | prepend: site.baseurl }}">{{ article.title }}</a></h3>
192+
{{ article.description | markdownify }}
193+
{% if article.more %}
194+
{% endif %}
195+
</article>
196+
{% endif %}
197+
{% endif %}
198+
{% endfor %}
199+
</div>
200+
</div>
201+
</div>
202+
203+
<div class="small-12 columns">
204+
<hr />
205+
<h2 id="general-hardware-info">General Hardware Information</h2>
206+
207+
<div class="row">
208+
<div class="small-12 columns support-excerpts general-hardware-info">
209+
{% assign articles = site.articles | sort:"title" %}
210+
{% for article in articles %}
211+
{% if article.hidden != true %}
212+
{% if article.section == 'general-hardware-info' %}
213+
<article>
214+
<h3><a href="{{ article.url | prepend: site.baseurl }}">{{ article.title }}</a></h3>
215+
{{ article.description | markdownify }}
216+
{% if article.more %}
217+
{% endif %}
218+
</article>
219+
{% endif %}
220+
{% endif %}
221+
{% endfor %}
222+
</div>
223+
</div>
224+
</div>
225+
180226
</div>
181227

182228
<div class="col-sm manage">

0 commit comments

Comments
 (0)