Skip to content

Commit 1c787d8

Browse files
committed
Merge pull request #123 from timothyf1/tools-collection
Editors are now in tools collection
2 parents 53b298f + 9c7ebcd commit 1c787d8

File tree

9 files changed

+11
-28
lines changed

9 files changed

+11
-28
lines changed

_config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ collections:
2626
output: true
2727
projects:
2828
output: true
29+
tools:
30+
output: true
File renamed without changes.

_posts/2015-10-03-adding-python-to-the-path-windows.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author : Timothy
77
comments : true
88
---
99

10-
There have been a few of you trying to run a [Python](/languages/python.html) script within [Atom](/editors/Atom.html) on windows and are getting the following error message.
10+
There have been a few of you trying to run a [Python](/languages/python.html) script within [Atom](/tools/Atom.html) on windows and are getting the following error message.
1111

1212
`'Python' is not recognized as an internal or external command, operable program or batch file.`
1313

editors/Atom.md renamed to _tools/Atom.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
2-
layout: editors
2+
layout: tools
33
title: Atom
4-
categories: inspiration editors
54
---
65
Atom is stated as the hackable editor for the 21<sup>st</sup> century. Unlike other editors such as vim, ed,
76
vi or nano; atom cannot be run in the terminal.

editors/Notepad.md renamed to _tools/Notepad.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
2-
layout: editors
2+
layout: tools
33
title: Notepad
4-
categories: inspiration editors
54
---
65

76
![So many Notepads!!](/res/gifs/8GB-of-Notepad.gif)

editors/idle.md renamed to _tools/idle.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
2-
layout: editors
2+
layout: tools
33
title: Idle
4-
categories: inspiration editors
54
---
65
For those of you (like my self) who don't do much "heavy" code, IDLE is ideal!
76

editors/vim.md renamed to _tools/vim.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
2-
layout: language
2+
layout: tools
33
title: Vim
4-
categories: inspiration editors
54
---
65

76
### Overview

editors/index.md

-13
This file was deleted.

reference.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,14 @@ a long list of these languages!
5656
</ul>
5757
</div>
5858

59-
## Editors
59+
## Tools
6060

61-
There are many editors you can use below is just a sample.
61+
There are many tools you can use below is just a sample.
6262

6363
<div class="two-cols">
6464
<ul>
65-
{% for pages in site.pages %}
66-
{% if pages.categories contains 'editors' %}
67-
<li><a href="{{ pages.url }}">{{ pages.title }}</a></li>
68-
{% endif %}
65+
{% for page in site.tools %}
66+
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
6967
{% endfor %}
7068
</ul>
7169
</div>

0 commit comments

Comments
 (0)