Commit 0d4397ebf76c306c9f6ef65fbdffd9ffb6f5f25e
add todo items for all guides
Paul Frazee committed on 3/17/2016, 2:00:48 AMParent: 48dd38e9b7b5298bdac2406eadb91e13ba6494bb
Files changed
tmpl/guides/how-to-use-pull-streams/intro.html.js | ||
---|---|---|
@@ -1,10 +1,0 @@ | ||
1 | -var page = require('../../page.part') | |
2 | -module.exports = () => page({ | |
3 | - section: 'guides', | |
4 | - tab: 'guides-how-to-use-pull-streams', | |
5 | - path: '/guides/how-to-use-pull-streams/intro.html', | |
6 | - content: ` | |
7 | - <h2>How to use Pull Streams</h2> | |
8 | - <p>todo</p> | |
9 | - ` | |
10 | -}) |
tmpl/guides/private-messaging-app/intro.html.js | ||
---|---|---|
@@ -1,0 +1,10 @@ | ||
1 | +var page = require('../../page.part') | |
2 | +module.exports = () => page({ | |
3 | + section: 'guides', | |
4 | + tab: 'guides-private-messaging-app', | |
5 | + path: '/guides/private-messaging-app/intro.html', | |
6 | + content: ` | |
7 | + <h2>Lets Write: a Private Messaging App</h2> | |
8 | + <p>todo</p> | |
9 | + ` | |
10 | +}) |
tmpl/guides/lets-write-a-file-sharing-app/intro.html.js | ||
---|---|---|
@@ -1,9 +1,0 @@ | ||
1 | -var page = require('../../page.part') | |
2 | -module.exports = () => page({ | |
3 | - tab: 'guides-lets-write-a-file-sharing-app', | |
4 | - path: '/guides/lets-write-a-file-sharing-app/intro.html', | |
5 | - content: ` | |
6 | - <h2>Lets Write: a File-Sharing App</h2> | |
7 | - <p>todo</p> | |
8 | - ` | |
9 | -}) |
tmpl/guides/lets-write-a-private-messaging-app/intro.html.js | ||
---|---|---|
@@ -1,9 +1,0 @@ | ||
1 | -var page = require('../../page.part') | |
2 | -module.exports = () => page({ | |
3 | - tab: 'guides-lets-write-a-private-messaging-app', | |
4 | - path: '/guides/lets-write-a-private-messaging-app/intro.html', | |
5 | - content: ` | |
6 | - <h2>Lets Write: a Private Messaging App</h2> | |
7 | - <p>todo</p> | |
8 | - ` | |
9 | -}) |
tmpl/guides/social-feed-app/intro.html.js | ||
---|---|---|
@@ -1,0 +1,10 @@ | ||
1 | +var page = require('../../page.part') | |
2 | +module.exports = () => page({ | |
3 | + section: 'guides', | |
4 | + tab: 'guides-social-feed-app', | |
5 | + path: '/guides/social-feed-app/intro.html', | |
6 | + content: ` | |
7 | + <h2>Lets Write: a Social Feed App</h2> | |
8 | + <p>todo</p> | |
9 | + ` | |
10 | +}) |
tmpl/guides/lets-write-a-todo-list-app/intro.html.js | ||
---|---|---|
@@ -1,9 +1,0 @@ | ||
1 | -var page = require('../../page.part') | |
2 | -module.exports = () => page({ | |
3 | - tab: 'guides-lets-write-a-todo-list-app', | |
4 | - path: '/guides/lets-write-a-todo-list-app/intro.html', | |
5 | - content: ` | |
6 | - <h2>Lets Write: a Todo-List App</h2> | |
7 | - <p>todo</p> | |
8 | - ` | |
9 | -}) |
tmpl/guides/todo-list-app/intro.html.js | ||
---|---|---|
@@ -1,0 +1,10 @@ | ||
1 | +var page = require('../../page.part') | |
2 | +module.exports = () => page({ | |
3 | + section: 'guides', | |
4 | + tab: 'guides-todo-list-app', | |
5 | + path: '/guides/todo-list-app/intro.html', | |
6 | + content: ` | |
7 | + <h2>Lets Write: a Todo List App</h2> | |
8 | + <p>todo</p> | |
9 | + ` | |
10 | +}) |
tmpl/leftnav.part.js | ||
---|---|---|
@@ -110,19 +110,15 @@ | ||
110 | 110 | ${item(c, '/guides/protocols/secret-handshake.html', 'Secret Handshake')} |
111 | 111 | ${item(c, '/guides/protocols/private-box.html', 'Private Box')} |
112 | 112 | </ul>` |
113 | 113 | |
114 | -module.exports['guides-how-to-use-pull-streams'] = (c) => `<ul class="nav"> | |
115 | - ${item(c, '/guides/how-to-use-pull-streams/intro.html', 'Intro')} | |
114 | +module.exports['guides-social-feed-app'] = (c) => `<ul class="nav"> | |
115 | + ${item(c, '/guides/social-feed-app/intro.html', 'Intro')} | |
116 | 116 | </ul>` |
117 | 117 | |
118 | -module.exports['guides-lets-write-a-file-sharing-app'] = (c) => `<ul class="nav"> | |
119 | - ${item(c, '/guides/lets-write-a-file-sharing-app/intro.html', 'Intro')} | |
118 | +module.exports['guides-private-messaging-app'] = (c) => `<ul class="nav"> | |
119 | + ${item(c, '/guides/private-messaging-app/intro.html', 'Intro')} | |
120 | 120 | </ul>` |
121 | 121 | |
122 | -module.exports['guides-lets-write-a-private-messaging-app'] = (c) => `<ul class="nav"> | |
123 | - ${item(c, '/guides/lets-write-a-private-messaging-app/intro.html', 'Intro')} | |
124 | -</ul>` | |
125 | - | |
126 | -module.exports['guides-lets-write-a-todo-list-app'] = (c) => `<ul class="nav"> | |
127 | - ${item(c, '/guides/lets-write-a-todo-list-app/intro.html', 'Intro')} | |
122 | +module.exports['guides-todo-list-app'] = (c) => `<ul class="nav"> | |
123 | + ${item(c, '/guides/todo-list-app/intro.html', 'Intro')} | |
128 | 124 | </ul>` |
tmpl/tabs.part.js | ||
---|---|---|
@@ -28,8 +28,8 @@ | ||
28 | 28 | </div>` |
29 | 29 | |
30 | 30 | module.exports.guides = (c) => `<div class="tabs small"> |
31 | 31 | ${item(c, 'guides-protocols', '/guides/protocols/secure-scuttlebutt.html', 'Protocols')} |
32 | - ${item(c, 'guides-social-feed=app', '/social/social-network.html', 'Social Feed App')} | |
33 | - ${item(c, 'private messaging app', '/messages/post.html', 'Private Messaging App')} | |
34 | - ${item(c, 'todo list app', '/advanced/writing-applications.html', 'Todo List App')} | |
32 | + ${item(c, 'guides-social-feed-app', '/guides/social-feed-app/intro.html', 'Social Feed App')} | |
33 | + ${item(c, 'guides-private-messaging-app', '/guides/private-messaging-app/intro.html', 'Private Messaging App')} | |
34 | + ${item(c, 'guides-todo-list-app', '/guides/todo-list-app/intro.html', 'Todo List App')} | |
35 | 35 | </div>` |
Built with git-ssb-web