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

Adding a Loading Spinner #4

Closed
wants to merge 10 commits into from
Closed
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
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@ language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "6"
- "8"

sudo: false
dist: trusty

branches:
only:
master

addons:
chrome: stable

Expand Down Expand Up @@ -37,7 +41,6 @@ matrix:

before_install:
- npm config set spin false
- npm install -g npm@4
- npm --version

script:
Expand Down
1 change: 1 addition & 0 deletions app/templates/version/loading.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{ember-spinner position="relative"}}
1 change: 1 addition & 0 deletions guides/getting-started/editing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is designed to add some documentation on how to get started editing your bits and pieces
1 change: 1 addition & 0 deletions guides/getting-started/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
If your'e reading this in your browser then congratulations! You are already started.
5 changes: 5 additions & 0 deletions guides/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Welcome to your brand new Guidemaker Guides 🎉

## Let's start editing

You should be able to start editing the files under `guides/` now to produce your documentation. Don't forget to checkout [the Editing Guide](./getting-started/editing/) to know how to set things up!
14 changes: 14 additions & 0 deletions guides/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
- title: "Guides and Tutorials"
url: 'index'
skip_toc: true
pages:
- title: "Guides"
url: ""

- title: "Getting Started"
url: 'getting-started'
pages:
- title: "Introduction"
url: "index"
- title: "Editing"
url: "editing"
Loading