Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #149 #163

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ <h1><a href="https://tessel.io/"><nobr><img src=
<a href="{{ site.baseurl }}/ap.html">access point</a>
</li>
<li>
<a href="{{ site.baseurl }}/webserver.html">webserver</a>
<a href="{{ site.baseurl }}/web-server.html">web server</a>
</li>
<li>
<a href="{{ site.baseurl }}/gpio.html">gpio</a>
Expand Down Expand Up @@ -170,7 +170,7 @@ <h1><a href="https://tessel.io/"><nobr><img src=
<a href="{{ site.baseurl }}/ap.html">6. access point</a>
</li>
<li>
<a href="{{ site.baseurl }}/webserver.html">7. webserver</a>
<a href="{{ site.baseurl }}/web-server.html">7. web server</a>
</li>
<li>
<a href="{{ site.baseurl }}/gpio.html">8. gpio</a>
Expand Down
2 changes: 1 addition & 1 deletion ap.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ Open the wifi setting of your computer, or a separate device like a smartphone o
</div>

<div class="large-6 columns right">
<a href="webserver.html" class= "bottomButton right button">Next: Build A Web Server</a>
<a href="web-server.html" class= "bottomButton right button">Next: Build A Web Server</a>
</div>
</div>
2 changes: 1 addition & 1 deletion gpio.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Share what you've made, and if you need help, [just ask](https://forums.tessel.i

<div class="row">
<div class="large-6 columns left">
<a href="webserver.html" class="bottomButton button">Prev: Build Your Internet</a>
<a href="web-server.html" class="bottomButton button">Prev: Build Your Internet</a>
</div>

<div class="large-6 columns right">
Expand Down
2 changes: 1 addition & 1 deletion webserver.html → web-server.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
---

{% capture include_install %}
{% include_relative webserver.md %}
{% include_relative web-server.md %}
{% endcapture %}
{{ include_install | markdownify }}

8 changes: 4 additions & 4 deletions webserver.md → web-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ In your command line, make a folder for your Tessel code, then initialize a Tess

`t2 init`

Rename the “index.js” file you’ve just created to “webserver.js”, then copy and paste the below script over the existing text:
Rename the “index.js” file you’ve just created to “web-server.js”, then copy and paste the below script over the existing text:

{% highlight javascript %}
// Import the interface to Tessel hardware
Expand Down Expand Up @@ -52,7 +52,7 @@ Now that our server is in place, let's get our access point set up. In the termi

If you haven't read about creating access points yet, check out the [access point tutorial](ap.html). After connecting to TesselRouter, run the following command in your terminal:

`t2 run webserver.js`
`t2 run web-server.js`

</div>

Expand Down Expand Up @@ -152,7 +152,7 @@ Open that file in the browser to see the UI for this web app.

Now let's check out the server again to finish up the project.

Replace the code in `webserver.js` with the following:
Replace the code in `web-server.js` with the following:

{% highlight javascript %}
// These two dependencies remain the same
Expand Down Expand Up @@ -242,7 +242,7 @@ index.html

Finally, let's fire up our server again by running:

`t2 run webserver.js`
`t2 run web-server.js`

</div>

Expand Down