diff options
author | gumi <git@gumi.ca> | 2019-07-13 14:51:35 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2019-07-20 17:53:11 -0400 |
commit | d9376169bc0d778381e5c4ff64ef9900d58ce219 (patch) | |
tree | 62b8e298f5fc7b6467d85424fd9db79c30f6a0dd /public | |
parent | a55d1feb915d5961d5aa0bca869210534cb9dc3e (diff) | |
download | website-d9376169bc0d778381e5c4ff64ef9900d58ce219.tar.gz website-d9376169bc0d778381e5c4ff64ef9900d58ce219.tar.bz2 website-d9376169bc0d778381e5c4ff64ef9900d58ce219.tar.xz website-d9376169bc0d778381e5c4ff64ef9900d58ce219.zip |
scrap everything and start over with Vue
Diffstat (limited to 'public')
-rw-r--r-- | public/_headers | 1 | ||||
-rw-r--r-- | public/_redirects | 4 | ||||
-rw-r--r-- | public/favicon.ico | bin | 0 -> 1150 bytes | |||
-rw-r--r-- | public/index.html | 17 | ||||
-rw-r--r-- | public/robots.txt | 7 | ||||
-rw-r--r-- | public/sitemap.xml | 33 |
6 files changed, 62 insertions, 0 deletions
diff --git a/public/_headers b/public/_headers new file mode 100644 index 0000000..a66746d --- /dev/null +++ b/public/_headers @@ -0,0 +1 @@ +# Netlify headers diff --git a/public/_redirects b/public/_redirects new file mode 100644 index 0000000..46f91c3 --- /dev/null +++ b/public/_redirects @@ -0,0 +1,4 @@ +# Netlify redirects + +# routes everything to the single-page app +/* /index.html 200 diff --git a/public/favicon.ico b/public/favicon.ico Binary files differnew file mode 100644 index 0000000..606d878 --- /dev/null +++ b/public/favicon.ico diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..38a7098 --- /dev/null +++ b/public/index.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width,initial-scale=1.0"> + <link rel="icon" href="<%= BASE_URL %>favicon.ico"> + <title><%= VUE_APP_TITLE %></title> + </head> + <body> + <noscript> + <strong>We're sorry but this website doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> + </noscript> + <div id="app"></div> + <!-- built files will be auto injected --> + </body> +</html> diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..3d2dc3a --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,7 @@ +User-agent: * +disallow: /api/ +allow: / + +sitemap: http://www.themanaworld.org/sitemap.xml +host: themanaworld.org +host: www.themanaworld.org diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..f52ae18 --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> +<url> +<loc>https://www.themanaworld.org/</loc> +<lastmod>2019-07-13</lastmod> +<changefreq>daily</changefreq> +<priority>0.5</priority> +</url> +<url> +<loc>https://www.themanaworld.org/news</loc> +<lastmod>2019-07-13</lastmod> +<changefreq>daily</changefreq> +<priority>0.5</priority> +</url> +<url> +<loc>https://www.themanaworld.org/about</loc> +<lastmod>2019-07-13</lastmod> +<changefreq>daily</changefreq> +<priority>0.5</priority> +</url> +<url> +<loc>https://www.themanaworld.org/support</loc> +<lastmod>2019-07-13</lastmod> +<changefreq>daily</changefreq> +<priority>0.5</priority> +</url> +<url> +<loc>https://www.themanaworld.org/register</loc> +<lastmod>2019-07-13</lastmod> +<changefreq>daily</changefreq> +<priority>0.5</priority> +</url> +</urlset> |