fix all kinds of bugs
This commit is contained in:
11
src/404.html
11
src/404.html
@@ -3,9 +3,12 @@
|
||||
<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;
|
||||
@@ -30,7 +33,7 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<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>
|
||||
<div id="footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -3,11 +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>
|
||||
<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>
|
||||
<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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -2,17 +2,17 @@
|
||||
<html>
|
||||
<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>
|
||||
<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">Welcome to janishutz.com!</h1>
|
||||
@@ -57,7 +57,6 @@
|
||||
<a class="linkbutton" href="/projects.html">Projects</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="Footer"></div>
|
||||
<div id="footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -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
10911
src/js/jquery.js
vendored
File diff suppressed because it is too large
Load Diff
4
src/js/loader.js
Normal file
4
src/js/loader.js
Normal file
@@ -0,0 +1,4 @@
|
||||
$( document ).ready( () => {
|
||||
$( '#nav' ).load( '/menu.html' );
|
||||
$( '#footer' ).load('/footer.html');
|
||||
} );
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user