Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anubhavsrivastava/gatsby-starter-resume
Gatsby.js V2 starter template based on Resume by startbootstrap
https://github.com/anubhavsrivastava/gatsby-starter-resume
gatsby gatsby-starter gatsby-starter-kit gatsbyjs startbootstrap starter-template
Last synced: about 2 months ago
JSON representation
Gatsby.js V2 starter template based on Resume by startbootstrap
- Host: GitHub
- URL: https://github.com/anubhavsrivastava/gatsby-starter-resume
- Owner: anubhavsrivastava
- Created: 2019-06-22T16:31:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-18T09:06:12.000Z (over 1 year ago)
- Last Synced: 2024-08-02T13:27:28.573Z (5 months ago)
- Topics: gatsby, gatsby-starter, gatsby-starter-kit, gatsbyjs, startbootstrap, starter-template
- Language: JavaScript
- Homepage: https://anubhavsrivastava.github.io/gatsby-starter-resume/
- Size: 3.51 MB
- Stars: 68
- Watchers: 3
- Forks: 26
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# gatsby-starter-resume
Gatsby.js V4 starter template based on Resume by startbootstrap
For an overview of the project structure please refer to the [Gatsby documentation - Building with Components](https://www.gatsbyjs.org/docs/building-with-components/).
Check online preview [here](https://anubhavsrivastava.github.io/gatsby-starter-resume/)
## Screenshot
![Screenshot](./src/assets/img/demo.png)
## Install
Make sure that you have the Gatsby CLI program installed:
```sh
npm install --global gatsby-cli
```And run from your CLI:
```sh
gatsby new https://github.com/anubhavsrivastava/gatsby-starter-resume
```Then you can run it by:
```sh
cd gatsby-example-site
npm install
gatsby develop
```### Personalization
Edit `config.js` to put up your details
```javascript
module.exports = {
siteTitle: 'Gatsby Starter Resume', //
...
firstName: 'Anubhav',
lastName: 'Srivastava',
// social
socialLinks: [
{
icon: 'fa-github',
name: 'Github',
url: 'https://github.com/anubhavsrivastava',
}
...
],
};```
#### Changing Theme ColourTo change theme colour, change `$primary` variable in `src/assets/sass/_variables.scss`.
### Deploying using Github page
`package.json` has a default script that uses `gh-pages` module to publish on Github pages. Simply running `npm run deploy` would publish the site on github pages.
Additionally, it also has [path-prefix](https://www.gatsbyjs.org/docs/path-prefix/) value set for gatsby config in `config.js`. Change `pathPrefix` to relevant path if your gatsby site is hosted on subpath of a domain, `https://theanubhav.com/somePath/`. If you are hosting it as root site, i.e, `https://theanubhav.com/` , remove the pathPrefix configuration.
### Checkout other similar starters
- [gatsby-starter-casual](https://github.com/anubhavsrivastava/gatsby-starter-casual)
- [gatsby-starter-grayscale](https://github.com/anubhavsrivastava/gatsby-starter-grayscale)
- [gatsby-starter-spectral](https://github.com/anubhavsrivastava/gatsby-starter-spectral)
- [gatsby-starter-newage](https://github.com/anubhavsrivastava/gatsby-starter-newage)
- [gatsby-starter-stylish](https://github.com/anubhavsrivastava/gatsby-starter-stylish)
- [gatsby-starter-solidstate](https://github.com/anubhavsrivastava/gatsby-starter-solidstate)
- [gatsby-starter-readonly](https://github.com/anubhavsrivastava/gatsby-starter-readonly)
- [gatsby-starter-prologue](https://github.com/anubhavsrivastava/gatsby-starter-prologue)
- [gatsby-starter-phantom](https://github.com/anubhavsrivastava/gatsby-starter-phantom)
- [gatsby-starter-paradigmshift](https://github.com/anubhavsrivastava/gatsby-starter-paradigmshift)
- [gatsby-starter-overflow](https://github.com/anubhavsrivastava/gatsby-starter-overflow)
- [gatsby-starter-multiverse](https://github.com/anubhavsrivastava/gatsby-starter-multiverse)
- [gatsby-starter-identity](https://github.com/anubhavsrivastava/gatsby-starter-identity)
- [gatsby-starter-highlights](https://github.com/anubhavsrivastava/gatsby-starter-highlights)
- [gatsby-starter-fractal](https://github.com/anubhavsrivastava/gatsby-starter-fractal)
- [gatsby-starter-eventually](https://github.com/anubhavsrivastava/gatsby-starter-eventually)
- [gatsby-starter-directive](https://github.com/anubhavsrivastava/gatsby-starter-directive)
- [gatsby-starter-creative](https://github.com/anubhavsrivastava/gatsby-starter-creative)
- [gatsby-starter-aerial](https://github.com/anubhavsrivastava/gatsby-starter-aerial)### Contribution
Suggestions and PRs are welcome!
Please create issue or open PR request for contribution.
### License
[![Open Source Love](https://badges.frapsoft.com/os/mit/mit.svg?v=102)](LICENSE)
refer `LICENSE` file in this repository.