We could add in the footer an 'edit this page' link. So that if I am browsing the about page, clicking on this button will redirect me to https://github.com/PokeAPI/pokeapi.co/blob/master/src/pages/about.html.js
An example is vue: https://vuejs.org/v2/guide/ look at the footer
I think it can be done by looking at the URL the user is currently browsing and replacing the base URL with the Github's one. Something like:
`https://github.com/PokeAPI/pokeapi.co/tree/master/src/pages${window.location.pathname}.js`
This will also increase the popularity of this repo 😄
PS: @cmmartti why the about, the v1 and v2 files are named .html.js? While the others are only .js?
We could add in the footer an 'edit this page' link. So that if I am browsing the about page, clicking on this button will redirect me to https://github.com/PokeAPI/pokeapi.co/blob/master/src/pages/about.html.js
An example is vue: https://vuejs.org/v2/guide/ look at the footer
I think it can be done by looking at the URL the user is currently browsing and replacing the base URL with the Github's one. Something like:
`https://github.com/PokeAPI/pokeapi.co/tree/master/src/pages${window.location.pathname}.js`This will also increase the popularity of this repo 😄
PS: @cmmartti why the about, the v1 and v2 files are named
.html.js? While the others are only.js?