Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Structured the project #18

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<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="stylesheet" href="/assets/css/404.css">
<link rel="stylesheet" href="./css/404.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Favicon -->
Expand Down Expand Up @@ -103,8 +103,7 @@ <h1 class="credit">Designed with <i class="fa fa-heart pulse"></i> by <a href="h

<!-- ==== ALL MAJOR JAVASCRIPT CDNS ENDS ==== -->

<script src="/assets/js/404.js"></script>

<script src="./js/404.js"></script>

</body>
</html>
26 changes: 0 additions & 26 deletions assets/js/404.js

This file was deleted.

251 changes: 0 additions & 251 deletions assets/js/script.js

This file was deleted.

File renamed without changes.
File renamed without changes.
17 changes: 15 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="keywords" content="jigar sable, portfolio, jigar, full stack dev, personal portfolio lifecodes, portfolio design, portfolio website, personal portfolio" />
<meta name="description" content="Welcome to Jigar's Portfolio. Full-Stack Web Developer and Android App Developer" />
<!-- Custom CSS -->
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./css/style.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Favicon -->
Expand Down Expand Up @@ -405,7 +405,20 @@ <h1 class="credit">Designed with <i class="fa fa-heart pulse"></i> by <a href="h

<!-- ==== ALL MAJOR JAVASCRIPT CDNS ENDS ==== -->

<script src="./assets/js/script.js"></script>
<!-- .js links -->
<script src="./js/particles.min.js"></script>
<script src="./js/app.js"></script>

<script src="./js/tabSwitch.js"></script>
<script src="./js/developerMode.js"></script>
<script src="./js/typedEffect.js"></script>
<script src="./js/showSkills.js"></script>
<script src="./js/showProjects.js"></script>
<script src="./js/scrollReveal.js"></script>
<script src="./js/projectBtn.js"></script>

<script src="./js/route.js"></script>
<script src="./js/script.js"></script>

</body>
</html>
7 changes: 7 additions & 0 deletions js/404.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
$(document).ready(function(){

$('#menu').click(function(){
$(this).toggleClass('fa-times');
$('.navbar').toggleClass('nav-toggle');
});
});
File renamed without changes.
18 changes: 18 additions & 0 deletions js/developerMode.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//disable developer mode
document.onkeydown = function (e) {
if (e.keyCode == 123) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == 'C'.charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)) {
return false;
}
}
File renamed without changes.
Loading