|
| 1 | +# icebergtech.xyz Homepage |
1 | 2 |
|
2 |
| -<h1 align="center">Work Flash</h1> |
3 | 3 |
|
| 4 | +* https://ice-bergtech.github.io |
| 5 | +* https://icebergtech.xyz |
4 | 6 |
|
| 7 | +--- |
5 | 8 |
|
6 |
| -<h2 align="center"> Work Flash is an Open Source Website built using HTML, CSS, JavaScript and Bootstrap. </h2> |
| 9 | +Use `task template-index` or `FILE=index.html; ./scripts/docker-template.sh` to generate final files in `/docs` folder. |
7 | 10 |
|
8 |
| -Do you desire greater exposure for your projects? Do you want others to be able to learn from your project? If the answer is yes, you are in the right place. The "Work Flash" website will assist you in growing your network and showcasing your work to the world. Grow your website to attract more viewers by contributing it to "Work Flash." |
| 11 | +Based on [KiranAminPanjwani/Work-Flas](https://github.com/KiranAminPanjwani/Work-Flash/graphs/contributors) - 2022 Kiran Amin Panjwani and contributors |
9 | 12 |
|
10 |
| -You can add your project or landing pages to **_Work Flash_** by **_appending_** the **"Contributions" section**. All you have to do is add a _picture_, a _title_, a brief _description_ of your project, and a _link_ to your _repository_. |
| 13 | +This project is licensed under the [**GPL license**](LICENSE.md). |
11 | 14 |
|
12 |
| -Also, anyone is welcome to add a new **_feature_** to this website. _Examples_ include the "<ins>Login-in page</ins>", "<ins>Sign-up page</ins>", "<ins>Search Project</ins>" feature, "<ins>Load More Projects</ins>" feature, "<ins>Add suggestion to project</ins>" option, "<ins>send message</ins>" functionality, and many more. |
13 |
| - |
14 |
| -<div align="center"> |
15 |
| - <h2> Click the 👇Globe to visit the website </h2> |
16 |
| -<a href="https://workflash.netlify.app/" align="center"><img src="https://img.icons8.com/external-vitaliy-gorbachev-fill-vitaly-gorbachev/60/FA5252/external-earth-space-vitaliy-gorbachev-fill-vitaly-gorbachev.png"/></a> |
17 |
| -</div> |
18 |
| - |
19 |
| - |
20 |
| -# <h3> 📌 Tech Stack</h3> |
21 |
| - |
22 |
| - |
23 |
| - |
24 |
| - |
25 |
| -<img alt="Bootstrap" src="https://img.shields.io/badge/bootstrap-%23563D7C.svg?style=for-the-badge&logo=bootstrap&logoColor=white"/> |
26 |
| - |
27 |
| -Font Awesome Icons: https://fontawesome.com/v4/icons/ |
28 |
| -SVG Icons: https://www.svgrepo.com/ |
29 |
| - |
30 |
| -Paralax notes: |
31 |
| - |
32 |
| -* https://freefrontend.com/css-parallax/ |
33 |
| -* https://codepen.io/oscicen/pen/zyJeJw |
34 |
| -* https://codepen.io/hexagoncircle/pen/JjRYaZw |
35 |
| -* https://codepen.io/silvandiepen/pen/NOboze |
36 |
| - |
37 |
| - |
38 |
| -# |
39 |
| -<h3> 📌 Snapshot of the Website:</h3> |
40 |
| - |
41 |
| - |
42 |
| - |
43 |
| - |
44 |
| - |
45 |
| -# |
46 |
| -<h3> 📌 Contribution Guidelines 🏗 </h3> |
47 |
| - |
48 |
| -Are we missing any of your favorite features, which you think you can add to it❓ We invite you to contribute to this project and make it better. |
49 |
| -To start contributing, follow the below guidelines: |
50 |
| - |
51 |
| -**1.** Fork [this](https://github.com/KiranAminPanjwani/Work-Flash) repository. |
52 |
| - |
53 |
| -**2.** Clone your forked copy of the project. |
54 |
| - |
55 |
| -```bash |
56 |
| - git clone https://github.com/KiranAminPanjwani/Work-Flash.git |
57 |
| -``` |
58 |
| - |
59 |
| -**3.** Navigate to the project directory. |
60 |
| -``` |
61 |
| - cd Work-Flash-Website |
62 |
| -``` |
63 |
| - |
64 |
| -**4.** Create a new branch: |
65 |
| -``` |
66 |
| - git checkout -b YourBranchName |
67 |
| -``` |
68 |
| - |
69 |
| -**5.** Make changes in source code. |
70 |
| - |
71 |
| -**6.** Stage your changes and commit |
72 |
| - |
73 |
| -``` |
74 |
| - git add . |
75 |
| - git commit -m "<your_commit_message>" |
76 |
| -``` |
77 |
| - |
78 |
| -**7.** Push your local commits to the remote repo. |
79 |
| - |
80 |
| -``` |
81 |
| - git push origin YourBranchName |
82 |
| -``` |
83 |
| - |
84 |
| -**8.** Create a [PR](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request) |
85 |
| - |
86 |
| -**9.** If anyone contribute to this repository, then the changes will not reflect in your local repository. For that: |
87 |
| - |
88 |
| -**10.** Setup a reference(remote) to the original repository to get all the changes from the remote. |
89 |
| -``` |
90 |
| - git remote add upstream https://github.com/KiranAminPanjwani/Work-Flash |
91 |
| -``` |
92 |
| - |
93 |
| -**11.** Check the remotes for this repository. |
94 |
| -``` |
95 |
| - git remote -v |
96 |
| -``` |
97 |
| - |
98 |
| -**12.** Fetching from the remote repository will bring in its branches and their respective commits. |
99 |
| -``` |
100 |
| - git fetch upstream |
101 |
| -``` |
102 |
| - |
103 |
| -**13.** Make sure that you're on your master branch. |
104 |
| -``` |
105 |
| - git checkout main |
106 |
| -``` |
107 |
| - |
108 |
| -**14.** Now that we have fetched the upstream repository, we want to merge its changes into our local branch. This will bring that branch into sync with the upstream, without losing our local changes. |
109 |
| -``` |
110 |
| - git merge upstream/main |
111 |
| -``` |
112 |
| - |
113 |
| -## Code of Conduct 📜 |
114 |
| - |
115 |
| -To maintain a safe and inclusive space for everyone to learn and grow, contributors are advised to follow the [Code of Conduct](./CODE_OF_CONDUCT.md). |
116 |
| - |
117 |
| -## Contribution is fun! ❤️ |
118 |
| - |
119 |
| -If you have any feedback or suggestions please reach out to me. |
120 |
| - |
121 |
| -In order to make a hassle-free environment, I implore you all (while contributing) to follow the instructions [Contributing Guidelines](https://github.com/KiranAminPanjwani/LeatherHoard/blob/main/Contributing_Guidlines.md)! |
122 |
| - |
123 |
| -You can create a <a href="https://github.com/KiranAminPanjwani/Work-Flash/issues">issue</a> and mention there , which new features or extension can make this Project more good. |
124 |
| - |
125 |
| - |
126 |
| -<!-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------ --> |
127 |
| -<br> |
128 |
| - |
129 |
| -<div align="center"> |
130 |
| - |
131 |
| -### Show some ❤️ by starring⭐ this awesome Repository! |
132 |
| - |
133 |
| -</div> |
134 |
| - |
135 |
| -# |
136 |
| - |
137 |
| -<h1 align=center> OUR VALUABLE CONTRIBUTORS✨ </h1> |
138 |
| -<p align="center"> |
139 |
| - |
140 |
| - |
141 |
| -<a href="https://github.com/KiranAminPanjwani/Work-Flash/graphs/contributors"> |
142 |
| - <img src="https://contrib.rocks/image?repo=KiranAminPanjwani/Work-Flash" /> |
143 |
| -</a> |
144 |
| -</p> |
145 |
| - |
146 |
| - |
147 |
| -# |
148 |
| - |
149 |
| - |
150 |
| - |
151 |
| -<h3 align=center> Project Admin ❤️ </h3> |
152 |
| - |
153 |
| -© 2022 Kiran Amin Panjwani and contributors\ |
154 |
| -This project is licensed under the [**GPL license**](https://github.com/KiranAminPanjwani/Work-Flash/blob/main/LICENSE). |
155 |
| - |
156 |
| -[](https://forthebadge.com) |
157 |
| -<a href="#top"><img src="https://img.shields.io/badge/-Back%20to%20Top-red?style=for-the-badge" align="right"/></a> |
158 |
| - |
159 |
| -<p align="center"> |
160 |
| -<table align="center"> |
161 |
| - <tbody><tr> |
162 |
| - <td align="center"><a href="https://github.com/KiranAminPanjwani"><img alt="" src="https://user-images.githubusercontent.com/90326051/192037521-3d5fa306-f642-4ae1-a53c-2054f40e2975.png" width="125px;"><br><sub><b> Kiran Panjwani </b></sub></a><br></td> </a></td> |
163 |
| -</tbody></table> |
164 | 15 |
|
165 | 16 |
|
0 commit comments