|
1 | | -### Ankit Rathi |
2 | | - |
3 | | -[LinkedIn](https://linkedin.com/in/ankit-singh-rathi) |
4 | | -[Stackoverflow](https://stackoverflow.com/users/5761011/codeaprendiz?tab=profile) |
5 | | -[Twitter](https://twitter.com/Ankit_Rathi_) |
6 | | -[Github](https://github.com/codeaprendiz) |
7 | | -<a href="codeaprendiz.github.io/images/resume/AnkitSinghRathi-Resume-2x-AWS-CKA-CKAD.pdf" target="_blank">Resume</a> |
8 | | - |
9 | | - |
10 | | -DevOps Engineer @ Tradeling.com | AWS Certified Solutions Architect - Professional | |
11 | | -2X AWS | CKA | CKAD |
12 | | -Ex - SE @ Walmart Labs India |
13 | | - |
14 | | -- [docker](docker-kitchen) |
15 | | -- [docker-compose](docker-compose-kitchen) |
16 | | -- [linux-commands](linux-command) |
17 | | -- [kubernetes](kubernetes) |
18 | | -- [terraform](terraform) |
19 | | -- [monitoring](monitoring) |
20 | | -- [ansible](https://ankitrathi.info/ansible-kitchen/) |
| 1 | +## Static Portfolio Website Using Github Pages |
| 2 | + |
| 3 | +[https://ankitrathi.info](https://ankitrathi.info) |
| 4 | + |
| 5 | +### HomePage |
| 6 | + |
| 7 | + |
| 8 | + |
| 9 | +## AboutMe |
| 10 | + |
| 11 | + |
| 12 | + |
| 13 | +## Experience |
| 14 | + |
| 15 | + |
| 16 | + |
| 17 | +## Projects |
| 18 | + |
| 19 | + |
| 20 | + |
| 21 | +- [bootstrap docs](https://getbootstrap.com/docs/5.0/getting-started/introduction) |
| 22 | +- [icons](https://icons.getbootstrap.com) |
| 23 | +- [navbar](https://getbootstrap.com/docs/5.0/components/navbar) |
| 24 | +- [Carousel](https://getbootstrap.com/docs/5.0/components/carousel) |
| 25 | +- [Accordion](https://getbootstrap.com/docs/5.0/components/accordion) |
| 26 | +- [accordion/#flush](https://getbootstrap.com/docs/5.0/components/accordion/#flush) |
| 27 | +- [google fonts](https://fonts.google.com/) |
| 28 | +- [manypixels.co/gallery](https://www.manypixels.co/gallery) |
| 29 | +- [getwaves.io](https://getwaves.io) |
| 30 | +- [github.com/biati-digital/glightbox](https://github.com/biati-digital/glightbox) |
| 31 | +- [npmjs.com/package/glightbox](https://www.npmjs.com/package/glightbox) |
| 32 | +- [fontawesome.com/v5/cheatsheet](https://fontawesome.com/v5/cheatsheet) |
| 33 | +- [tablericons.com](https://tablericons.com) |
| 34 | + |
| 35 | +- Version |
| 36 | + |
| 37 | +``` |
| 38 | +$ node -v |
| 39 | +v16.13.1 |
| 40 | +$ npm -v |
| 41 | +8.1.2 |
| 42 | +``` |
| 43 | + |
| 44 | +- Init |
| 45 | + |
| 46 | +```bash |
| 47 | +$ npm init |
| 48 | +``` |
| 49 | + |
| 50 | + |
| 51 | +- Dev dependency add |
| 52 | + |
| 53 | +```bash |
| 54 | +$ npm install --save-dev sass |
| 55 | + |
| 56 | +``` |
| 57 | + |
| 58 | +- Add bootstrap dependency |
| 59 | + |
| 60 | +```bash |
| 61 | +$ npm install --save bootstrap |
| 62 | + |
| 63 | +``` |
| 64 | + |
| 65 | + |
| 66 | +- Install fontawesome free |
| 67 | + |
| 68 | +```bash |
| 69 | +$ npm install --save @fortawesome/fontawesome-free |
| 70 | + |
| 71 | +``` |
| 72 | + |
| 73 | +- Install postcss-cli |
| 74 | + |
| 75 | +```bash |
| 76 | +$ npm install postcss-cli autoprefixer |
| 77 | +``` |
| 78 | + |
| 79 | +- Create the following folders and files |
| 80 | + |
| 81 | +```bash |
| 82 | +$ mkdir scss |
| 83 | + |
| 84 | +$ touch scss/style.scss |
| 85 | + |
| 86 | +$ npm run compile:sass |
| 87 | + |
| 88 | +> bootstrap-v5@1.0.0 compile:sass |
| 89 | +> sass scss:assets/css |
| 90 | +``` |
| 91 | + |
| 92 | +- Now add the watch flag |
| 93 | + |
| 94 | +```json |
| 95 | + "compile:sass": "sass --watch scss:assets/css" |
| 96 | + |
| 97 | +``` |
| 98 | + |
| 99 | +- Add file |
| 100 | + |
| 101 | +```bash |
| 102 | +$ touch scss/_custom.scss |
| 103 | +$ touch theming-kit.html |
| 104 | +``` |
| 105 | + |
| 106 | +- You can open the content of theming-kit.html using `Live Server` |
| 107 | + |
| 108 | + |
| 109 | +- Create folders |
| 110 | + |
| 111 | +```bash |
| 112 | +$ mkdir -p scss/sections |
| 113 | +$ mkdir -p scss/components |
| 114 | + |
| 115 | +$ touch scss/components/_buttons.scss |
| 116 | +$ touch scss/components/_animations.scss |
| 117 | +$ touch scss/components/_mixins.scss |
| 118 | +$ touch scss/components/_typography.scss |
| 119 | + |
| 120 | +$ touch scss/sections/_navbar.scss |
| 121 | +$ touch scss/sections/_intro-section.scss |
| 122 | +$ touch scss/sections/_companies.scss |
| 123 | +$ touch scss/sections/_services.scss |
| 124 | +$ touch scss/sections/_testimonials.scss |
| 125 | +$ touch scss/sections/_faq.scss |
| 126 | +$ touch scss/sections/_portfolio.scss |
| 127 | +$ touch scss/sections/_get-started.scss |
| 128 | +$ touch scss/sections/_footer.scss |
| 129 | +``` |
| 130 | + |
21 | 131 |
|
0 commit comments