fix all kinds of bugs

This commit is contained in:
2023-07-13 18:22:43 +02:00
parent 4c389621ce
commit d86a492b0a
19 changed files with 193 additions and 11087 deletions

View File

@@ -1,11 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<head>
<title>404 - Page not Found - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer src="/js/jquery.js"></script>
<script defer src="/js/basicanimations.js"></script>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
<style>
.errorpage {
text-align: center;
@@ -27,10 +30,10 @@
font-size: 150%;
}
</style>
</head>
</head>
<body>
<div id="ContentToInclude"></div>
<body>
<div id="nav"></div>
<div class="errorpage">
<div class="mainstyle">
<h2 class="Bigtext">The page you are looking for was not found</h2>
@@ -39,6 +42,6 @@
<a href="/" class="linkbutton">Go to homepage</a>
</div>
</div>
<div id="Footer"></div>
</body>
<div id="footer"></div>
</body>
</html>

View File

@@ -1,16 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<head>
<title>About - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/mainstyle.css">
<script defer src="./js/jquery.js"></script>
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<script defer src="./js/basicanimations.js"></script>
</head>
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>
<body>
<div id="ContentToInclude"></div>
<div class="mainstyle">
<div class="title-container">
@@ -29,5 +30,5 @@
</div>
</div>
<div id="Footer"></div>
</body>
</body>
</html>

View File

@@ -3,9 +3,12 @@
<head>
<title>About - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/mainstyle.css">
<script defer src="./js/jquery.js"></script>
<script defer src="./js/basicanimations.js"></script>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>
<div id="ContentToInclude"></div>

View File

@@ -1,17 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="/css/footerstyle.css">
<title>Footer - janishutz.com</title>
</head>
<body>
<div class="Footer-box">
</head>
<body>
<div class="Footer-box">
<div class="footer-content-box">
<img src="/assets/Logo.png" class="footer-logo">
<div class="footer-center-box">
<a href="/privacypolicy.html" class="linkbutton" id="ppbtn">Privacy Policy</a>
</div>
</div>
</div>
</div>
</body>

View File

@@ -1,18 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<head>
<title>Home - janishutz.com</title>
<meta name="description" content="Discover my Software projects and services, and get support if you encounter problems.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/mainstyle.css">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<script defer src="/js/jquery.js"></script>
<script defer src="/js/basicanimations.js"></script>
</head>
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>
<div id="ContentToInclude"></div>
<body>
<div id="nav"></div>
<div class="mainstyle">
<div class="title-container">
<h1 class="title">Welcome to janishutz.com!</h1>
@@ -57,7 +57,6 @@
<a class="linkbutton" href="/projects.html">Projects</a>
</div>
</div>
<div id="Footer"></div>
</body>
<div id="footer"></div>
</body>
</html>

View File

@@ -1,20 +0,0 @@
$( document ).ready( function() {
$( '#ContentToInclude' ).load( '/menu.html' );
$( '#Footer' ).load('/footer.html');
setTimeout( highlightLocation, 200 );
} );
function highlightLocation () {
let pagename = $(location).attr( 'pathname' );
if ( pagename.slice(0, 8) == '/project' ) {
$( '#projects' ).css( 'background-color', 'darkblue' );
} else if ( pagename.slice( 0, 6 ) == '/about' || pagename.slice( 0, 14 ) == '/privacypolicy' ) {
$( '#about' ).css( 'background-color', 'darkblue' );
} else if ( pagename.slice( 0, 6 ) == '/' || pagename == '/index.html' ) {
$( '#home' ).css( 'background-color', 'darkblue' );
} else if ( pagename.slice( 0, 8 ) == '/support' ) {
$( '#support' ).css( 'background-color', 'darkblue' );
} else if ( pagename.slice( 0, 9 ) == '/services' ) {
$( '#services' ).css( 'background-color', 'darkblue') ;
};
}

10911
src/js/jquery.js vendored

File diff suppressed because it is too large Load Diff

4
src/js/loader.js Normal file
View File

@@ -0,0 +1,4 @@
$( document ).ready( () => {
$( '#nav' ).load( '/menu.html' );
$( '#footer' ).load('/footer.html');
} );

View File

@@ -31,6 +31,7 @@
<div class="menu-category" onclick="dropdown( 'projects-page' )" id="projects-page-parent">
<h3>Projects</h3>
<div class="category-list" id="projects-page">
<a href="/projects" class="category-item">Browse</a>
<a href="/projects/storagemanager" class="category-item">StorageManager</a>
<a href="/projects/smuL" class="category-item">SimpleMediaUpscalerLite</a>
<a href="/projects/libreevent" class="category-item">libreǝvent</a>

View File

@@ -3,9 +3,12 @@
<head>
<title>Privacy Policy - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="/js/jquery.js"></script>
<script defer src="/js/basicanimations.js"></script>
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>
<div id="ContentToInclude"></div>

View File

@@ -3,9 +3,12 @@
<head>
<title>BiogasControllerApp - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="/js/jquery.js"></script>
<script defer src="/js/basicanimations.js"></script>
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>
<div id="ContentToInclude"></div>

View File

@@ -4,12 +4,14 @@
<title>Projects - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="./css/mainstyle.css">
<script defer src="./js/jquery.js"></script>
<script defer src="./js/basicanimations.js"></script>
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>
<div id="ContentToInclude"></div>
<div id="nav"></div>
<div class="mainstyle">
<div class="title-container">
<h1 class="title">My projects</h1>
@@ -35,6 +37,6 @@
<li><a class="textlink" href="https://impress-testing.janishutz.com">Impress.js website (Not yet up, in development)</a></li>
</ul>
</div>
<div id="Footer"></div>
<div id="footer"></div>
</body>
</html>

View File

@@ -3,9 +3,12 @@
<head>
<title>MusicPlayer - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="/js/jquery.js"></script>
<script defer src="/js/basicanimations.js"></script>
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>

View File

@@ -3,9 +3,12 @@
<head>
<title>QR & Barcode Insight - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="/js/jquery.js"></script>
<script defer src="/js/basicanimations.js"></script>
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>
<div id="ContentToInclude"></div>

View File

@@ -3,9 +3,12 @@
<head>
<title>smuL - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="/js/jquery.js"></script>
<script defer src="/js/basicanimations.js"></script>
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>
<div id="ContentToInclude"></div>

View File

@@ -3,9 +3,12 @@
<head>
<title>StorageManager - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="/js/jquery.js"></script>
<script defer src="/js/basicanimations.js"></script>
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>
<div id="ContentToInclude"></div>

View File

@@ -3,9 +3,12 @@
<head>
<title>Services - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="/js/jquery.js"></script>
<script defer src="/js/basicanimations.js"></script>
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>
<div id="ContentToInclude"></div>

View File

@@ -3,9 +3,12 @@
<head>
<title>Support - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script src="/js/jquery.js"></script>
<script src="/js/basicanimations.js"></script>
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
</head>
<body>
<div id="ContentToInclude"></div>