{{{{/raw}}}}
@@ -21,10 +23,31 @@ export default {
diff --git a/template/pages/_id.vue b/template/pages/users/_id.vue
similarity index 50%
rename from template/pages/_id.vue
rename to template/pages/users/_id.vue
index fe78288..a5245d5 100644
--- a/template/pages/_id.vue
+++ b/template/pages/users/_id.vue
@@ -1,29 +1,28 @@
{{{{raw}}}}
-
-
- User
-
-
- {{ user.name }}
-
-
- Users
-
+
+
+
+ User
+
+
+ {{ user.name }}
+
+
+ Users
+
+
{{{{/raw}}}}
diff --git a/template/plugins/README.md b/template/plugins/README.md
new file mode 100644
index 0000000..ca1f9d8
--- /dev/null
+++ b/template/plugins/README.md
@@ -0,0 +1,7 @@
+# PLUGINS
+
+**This directory is not required, you can delete it if you don't want to use it.**
+
+This directory contains Javascript plugins that you want to run before mounting the root Vue.js application.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/plugins).
diff --git a/template/plugins/axios.js b/template/plugins/axios.js
deleted file mode 100644
index c804d21..0000000
--- a/template/plugins/axios.js
+++ /dev/null
@@ -1,9 +0,0 @@
-import * as axios from 'axios'
-
-let options = {}
-// The server-side needs a full url to works
-if (process.server) {
- options.baseURL = `http://${process.env.HOST || 'localhost'}:${process.env.PORT || 3000}`
-}
-
-export default axios.create(options)
diff --git a/template/static/README.md b/template/static/README.md
new file mode 100644
index 0000000..cf00435
--- /dev/null
+++ b/template/static/README.md
@@ -0,0 +1,11 @@
+# STATIC
+
+**This directory is not required, you can delete it if you don't want to use it.**
+
+This directory contains your static files.
+Each file inside this directory is mapped to `/`.
+Thus you'd want to delete this README.md before deploying to production.
+
+Example: `/static/robots.txt` is mapped as `/robots.txt`.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#static).
diff --git a/template/static/favicon.ico b/template/static/favicon.ico
index 382fecb..3632d0c 100644
Binary files a/template/static/favicon.ico and b/template/static/favicon.ico differ
diff --git a/template/store/README.md b/template/store/README.md
new file mode 100644
index 0000000..1972d27
--- /dev/null
+++ b/template/store/README.md
@@ -0,0 +1,10 @@
+# STORE
+
+**This directory is not required, you can delete it if you don't want to use it.**
+
+This directory contains your Vuex Store files.
+Vuex Store option is implemented in the Nuxt.js framework.
+
+Creating a file in this directory automatically activates the option in the framework.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/vuex-store).