fix 404 and redundant shit
This commit is contained in:
parent
7d1bd7883d
commit
18c6c9b2c0
|
@ -12,12 +12,12 @@ layout: nil
|
|||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes" />
|
||||
<link rel="stylesheet" href="/assets/css/all.min.css" />
|
||||
<link rel="stylesheet" href="/assets/css/colors-20200925-r1.css" />
|
||||
<link rel="stylesheet" href="/assets/css/main-20200925-r1.css" />
|
||||
<link rel="stylesheet" href="/assets/css/colors-20200911.css" />
|
||||
<link rel="stylesheet" href="/assets/css/main-20200911.css" />
|
||||
<link rel="apple-touch-icon" href="{{ site.url }}/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" href="{{ site.url }}/touch-icon.png" sizes="192x192">
|
||||
<link rel="shortcut icon" href="{{ site.url }}{{ site.icon }}" type="image/png" />
|
||||
<noscript><link rel="stylesheet" href="/assets/css/noscripts-20200925-r1.css" /></noscript>
|
||||
<noscript><link rel="stylesheet" href="/assets/css/noscripts-20200911.css" /></noscript>
|
||||
|
||||
<meta name="theme-color" content="{{ site.data.colors.bg }}"/>
|
||||
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
---
|
||||
---
|
||||
@import 'colors.css';
|
||||
@import 'libs/vars';
|
||||
|
||||
@import 'libs/reset';
|
||||
|
||||
// sethy stuff
|
||||
@import 'layout';
|
||||
@import 'libs/animations';
|
||||
@import 'elements';
|
||||
@import 'navigation';
|
||||
@import 'zafari';
|
||||
@import 'videos';
|
||||
@import 'cookies';
|
||||
@import 'player';
|
||||
@import 'trackplayer';
|
||||
@import 'set';
|
|
@ -1,19 +0,0 @@
|
|||
---
|
||||
---
|
||||
@import 'libs/vars';
|
||||
|
||||
@import 'libs/reset';
|
||||
|
||||
// sethy stuff
|
||||
@import 'libs/animations';
|
||||
@import 'layout';
|
||||
@import 'elements';
|
||||
@import 'navigation';
|
||||
@import 'zafari';
|
||||
@import 'videos';
|
||||
@import 'cookies';
|
||||
@import 'player';
|
||||
@import 'trackplayer';
|
||||
@import 'set';
|
||||
@import 'noscripts';
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
// When the user scrolls the page, execute scrollMenu
|
||||
window.onscroll = function () { scrollMenu() };
|
||||
|
||||
// Get the navbar
|
||||
var navbar = document.getElementById("logo");
|
||||
var hider = document.getElementById("sticky");
|
||||
// Get the offset position of the navbar
|
||||
var sticky = navbar.offsetTop;
|
||||
|
||||
|
||||
|
||||
// Add the sticky class to the navbar when you reach its scroll position. Remove "sticky" when you leave the scroll position
|
||||
function scrollMenu() {
|
||||
if (window.pageYOffset >= sticky) {
|
||||
hider.classList.add("sticky")
|
||||
} else {
|
||||
hider.classList.remove("sticky")
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// Make a pretty background when menu is open
|
||||
var bodyBluring = document.getElementById("main-wrapper")
|
||||
|
||||
function blurBody() {
|
||||
bodyBluring.classList.toggle("blurredout");
|
||||
}
|
||||
function removeBlur() {
|
||||
bodyBluring.classList.remove("blurredout")
|
||||
}
|
||||
|
||||
/// request permission to autoplay
|
Loading…
Reference in a new issue