Skip to content

Commit b754c70

Browse files
author
fabianmoronzirfas
committed
fix(layout): only use existing layout
1 parent c8c540e commit b754c70

File tree

11 files changed

+26
-23
lines changed

11 files changed

+26
-23
lines changed

tutorials/hello_world/index.md renamed to tutorials/00-hello-world/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: admin
3-
layout: hello_world
3+
layout: tutorial
44
title: "Hello World"
55
---
66

tutorials/getting_started/index.md renamed to tutorials/01-getting-started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: admin
3-
layout: getting_started
3+
layout: tutorial
44
title: "Getting Started"
55
---
66

tutorials/drawing_color/index.md renamed to tutorials/02-drawing-color/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: admin
3-
layout: drawing_color
3+
layout: tutorial
44
title: "Drawing and colors"
55
---
66

tutorials/syntax/index.md renamed to tutorials/03-syntax/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
author: admin
3-
layout: syntax
3+
layout: tutorial
44
title: "Syntax check basil.js vs. Processing"
55
---
66

tutorials/finding_help/index.md renamed to tutorials/04-finding-help/index.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
---
22
author: admin
3-
layout: finding_help
3+
layout: tutorial
44
title: "Finding Help"
55
---
66

77
## InDesign scripting inspirations
88
- [The "Jongware" reference](http://jongware.mit.edu/idcs6js/)
99
- [InDesign Secrets](http://indesignsecrets.com/)
10-
- [Extendables](http://extendables.org/)
11-
- [Typography and Automation at FH Potsdam](http://fabiantheblind.github.com/Typography-And-Automation/)
12-
- [Fabian The Blind's Wiki](https://github.com/fabiantheblind/auto-typo-adbe-id/wiki)
13-
- [Fabian The Blind's Scripts](http://fabiantheblind.info/coding.html)
10+
- [Typography and Automation at FH Potsdam](http://fabianmoronzirfas.github.com/Typography-And-Automation/)
11+
- [The GitHub Extendscipt Organisations Wiki](https://github.com/ExtendScript/wiki/wiki)
12+
- [Fabian Morón Zirfas Scripts](https://github.com/fabianmoronzirfas?utf8=%E2%9C%93&tab=repositories&q=Extendscript&type=&language=)
1413
- [Adobe InDesign Skriptwerkstatt (german)](http://www.hilfdirselbst.ch/foren/gforum.cgi?forum=61;)
1514

1615
## Processing inspirations

tutorials/technical/index.md renamed to tutorials/05-technical/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
author: admin
3-
layout: technical
4-
title: "Technical details about basil.js"
3+
layout: tutorial
4+
title: "Technical Details About basil.js"
55
---
66

77
## The tech facts:

tutorials/index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
author: admin
3+
layout: default
4+
originallink: http://basiljs.ch/tutorials/
5+
title: Tutorials
6+
---
7+
8+
<ul>
9+
{% for page in site.pages %}
10+
{% if page.layout == 'tutorial' %}
11+
{% if page.title != 'example tutorial page'%}
12+
<li><a href="{{page.url}}">{{page.title}}</a></li>
13+
{% endif %}
14+
{% endif %}
15+
{% endfor %}
16+
</ul>

0 commit comments

Comments
 (0)