style & script fixes
This commit is contained in:
parent
ac3bc5b0ed
commit
a059aae772
@ -688,7 +688,7 @@ link:focus,
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-expand-lg .navbar-nav .nav-link {
|
.navbar-expand-xl .navbar-nav .nav-link {
|
||||||
padding: 40px 0px;
|
padding: 40px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -902,6 +902,17 @@ link:focus,
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 991px) {
|
@media (max-width: 991px) {
|
||||||
|
.feature-blocks {
|
||||||
|
margin-top: 0;
|
||||||
|
padding: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.feature-blocks h3 {
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1199px) {
|
||||||
.navigation {
|
.navigation {
|
||||||
background: var(--gcg-color-secondary);
|
background: var(--gcg-color-secondary);
|
||||||
}
|
}
|
||||||
@ -915,7 +926,7 @@ link:focus,
|
|||||||
background: var(--gcg-color-secondary) !important;
|
background: var(--gcg-color-secondary) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar-expand-lg .navbar-nav .nav-link {
|
.navbar-expand-xl .navbar-nav .nav-link {
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -936,17 +947,6 @@ link:focus,
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.feature-blocks {
|
|
||||||
margin-top: 0;
|
|
||||||
padding: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature-blocks h3 {
|
|
||||||
font-size: 25px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 1199px) {
|
|
||||||
.feature-blocks {
|
.feature-blocks {
|
||||||
padding-right: 50px;
|
padding-right: 50px;
|
||||||
padding-left: 50px;
|
padding-left: 50px;
|
||||||
@ -1057,3 +1057,9 @@ link:focus,
|
|||||||
vertical-align: -0.125rem;
|
vertical-align: -0.125rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#chart-container {
|
||||||
|
position: relative;
|
||||||
|
height: 50vh;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
(function ($) {
|
(($) => {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
// adapt header to height
|
// adapt header to height
|
||||||
@ -18,7 +18,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// load scripts
|
// load scripts
|
||||||
$(window).on('load', function () {
|
$(window).on('load', () => {
|
||||||
$('.preloader').fadeOut(100);
|
$('.preloader').fadeOut(100);
|
||||||
adaptHeight();
|
adaptHeight();
|
||||||
if ($('#top-banner').length) {
|
if ($('#top-banner').length) {
|
||||||
@ -48,12 +48,9 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
// venobox popup
|
// venobox popup
|
||||||
$(document).ready(function () {
|
$(document).ready(() => {
|
||||||
new VenoBox({
|
$('.vb-video').venobox({ spinner: 'grid' });
|
||||||
selector: '.vb-video',
|
$('.vb-gallery').venobox({
|
||||||
spinner: 'grid'
|
|
||||||
});
|
|
||||||
new VenoBox({
|
|
||||||
selector: '.vb-gallery',
|
selector: '.vb-gallery',
|
||||||
numeration: true,
|
numeration: true,
|
||||||
infinigall: true,
|
infinigall: true,
|
||||||
@ -64,48 +61,73 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
// filter
|
// filter
|
||||||
$(document).ready(function () {
|
$(document).ready(() => {
|
||||||
|
if ($('.filter-container').length != 0) {
|
||||||
const shuffleInstance = new Shuffle($('.filter-container'), {
|
const shuffleInstance = new Shuffle($('.filter-container'), {
|
||||||
itemSelector: '.filter-item',
|
itemSelector: '.filter-item',
|
||||||
sizer: '.filter-sizer', // could also be a selector: '.js-shuffle-sizer'
|
sizer: '.filter-sizer',
|
||||||
delimiter: ','
|
delimiter: ','
|
||||||
});
|
});
|
||||||
$('.filter-controls li').on('click', function () {
|
$('.filter-controls li').on('click',() => {
|
||||||
$('.filter-controls li').removeClass('active');
|
$('.filter-controls li').removeClass('active');
|
||||||
$(this).addClass('active');
|
$(this).addClass('active');
|
||||||
shuffleInstance.filter($(this).data('filter'))
|
shuffleInstance.filter($(this).data('filter'))
|
||||||
});
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// count up
|
// counter
|
||||||
function counter() {
|
$(window).on('scroll', () => {
|
||||||
var oTop;
|
var oTop;
|
||||||
if ($('.count').length !== 0) {
|
if ($('.count').length !== 0) {
|
||||||
oTop = $('.count').offset().top - window.innerHeight;
|
oTop = $('.count').offset().top - window.innerHeight;
|
||||||
}
|
}
|
||||||
if ($(window).scrollTop() > oTop) {
|
if ($(window).scrollTop() > oTop) {
|
||||||
$('.count').each(function () {
|
$('.count').each(() => {
|
||||||
var $this = $(this),
|
var $this = $(this), countTo = $this.attr('data-count');
|
||||||
countTo = $this.attr('data-count');
|
$({ countNum: $this.text() }).animate(
|
||||||
$({
|
{ countNum: countTo },
|
||||||
countNum: $this.text()
|
{
|
||||||
}).animate({
|
|
||||||
countNum: countTo
|
|
||||||
}, {
|
|
||||||
duration: 1000,
|
duration: 1000,
|
||||||
easing: 'swing',
|
easing: 'swing',
|
||||||
step: function () {
|
step: () => $this.text(Math.floor(this.countNum)),
|
||||||
$this.text(Math.floor(this.countNum));
|
complete: () => $this.text(this.countNum)
|
||||||
},
|
|
||||||
complete: function () {
|
|
||||||
$this.text(this.countNum);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
|
||||||
$(window).on('scroll', function () {
|
|
||||||
counter();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$(window).on('DOMContentLoaded', () => {
|
||||||
|
if (window.PagefindUI != undefined) {
|
||||||
|
new window.PagefindUI({
|
||||||
|
element: "#search",
|
||||||
|
translations: {
|
||||||
|
placeholder: "Suchen...",
|
||||||
|
zero_results: "Leider konnten keine Ergebnisse zu [SEARCH_TERM] gefunden werden",
|
||||||
|
clear_search: "Löschen"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#pagefind-search').on('shown.bs.modal', () => {
|
||||||
|
$('.pagefind-ui__search-input').focus();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// enable matomo analytics
|
||||||
|
var _paq = window._paq = window._paq || [];
|
||||||
|
_paq.push(["setDoNotTrack", true]);
|
||||||
|
_paq.push(["disableCookies"]);
|
||||||
|
_paq.push(['trackPageView']);
|
||||||
|
_paq.push(['enableLinkTracking']);
|
||||||
|
(() => {
|
||||||
|
var u="https://analytics.cantorgymnasium.de/";
|
||||||
|
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
||||||
|
_paq.push(['setSiteId', '1']);
|
||||||
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||||
|
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
||||||
|
})();
|
||||||
|
|
||||||
|
new LazyLoad();
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
@ -34,12 +34,14 @@ params:
|
|||||||
- https://assets.cantorgymnasium.de/bootstrap/v5/css/bootstrap.min.css
|
- https://assets.cantorgymnasium.de/bootstrap/v5/css/bootstrap.min.css
|
||||||
- https://assets.cantorgymnasium.de/slick/v1.8/slick.css
|
- https://assets.cantorgymnasium.de/slick/v1.8/slick.css
|
||||||
- https://assets.cantorgymnasium.de/venobox/v2/dist/venobox.min.css
|
- https://assets.cantorgymnasium.de/venobox/v2/dist/venobox.min.css
|
||||||
- https://assets.cantorgymnasium.de/fonts/fira/fira.css
|
- https://assets.cantorgymnasium.de/fonts/fira/fira.min.css
|
||||||
- https://assets.cantorgymnasium.de/fonts/ubuntu/ubuntu.css
|
- https://assets.cantorgymnasium.de/fonts/ubuntu/ubuntu.min.css
|
||||||
|
- /pagefind/pagefind-ui.css
|
||||||
js:
|
js:
|
||||||
- https://assets.cantorgymnasium.de/bootstrap/v5/js/bootstrap.bundle.min.js
|
- https://assets.cantorgymnasium.de/bootstrap/v5/js/bootstrap.bundle.min.js
|
||||||
- https://assets.cantorgymnasium.de/slick/v1.8/slick.min.js
|
- https://assets.cantorgymnasium.de/slick/v1.8/slick.min.js
|
||||||
- https://assets.cantorgymnasium.de/lazyload/v17/dist/lazyload.min.js
|
- https://assets.cantorgymnasium.de/lazyload/v17/dist/lazyload.min.js
|
||||||
|
- /pagefind/pagefind-ui.js
|
||||||
head_js:
|
head_js:
|
||||||
- https://assets.cantorgymnasium.de/jquery/v3.7/jquery.min.js
|
- https://assets.cantorgymnasium.de/jquery/v3.7/jquery.min.js
|
||||||
- https://assets.cantorgymnasium.de/venobox/v2/dist/venobox.min.js
|
- https://assets.cantorgymnasium.de/venobox/v2/dist/venobox.min.js
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
title: Einladung Weihnachtskonzert 2023
|
title: Einladung Weihnachtskonzert 2023
|
||||||
date: 2023-11-04T23:10:45.890+01:00
|
date: 2023-11-04T23:10:45.890+01:00
|
||||||
draft: false
|
draft: false
|
||||||
image: /media/gcgweihnachten.png
|
image: /media/blog/weihnachten.webp
|
||||||
author:
|
author:
|
||||||
- herr-berger
|
- herr-berger
|
||||||
categories:
|
categories:
|
||||||
|
@ -10,15 +10,8 @@ type: pages
|
|||||||
aliases:
|
aliases:
|
||||||
- /schulchronik/pages/abiturdurchschnitte
|
- /schulchronik/pages/abiturdurchschnitte
|
||||||
---
|
---
|
||||||
<script src="https://assets.cantorgymnasium.de/echarts/v5/echarts.min.js"></script>
|
|
||||||
<style>
|
|
||||||
#chart-container {
|
|
||||||
position: relative;
|
|
||||||
height: 50vh;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
|
<script src="https://assets.cantorgymnasium.de/echarts/v5/echarts.min.js"></script>
|
||||||
<div id="chart-container"></div>
|
<div id="chart-container"></div>
|
||||||
<script>
|
<script>
|
||||||
var dom = document.getElementById("chart-container");
|
var dom = document.getElementById("chart-container");
|
||||||
|
@ -6,13 +6,6 @@ aliases:
|
|||||||
- /schulchronik/pages/schülerzahlen
|
- /schulchronik/pages/schülerzahlen
|
||||||
---
|
---
|
||||||
<script src="https://assets.cantorgymnasium.de/echarts/v5/echarts.min.js"></script>
|
<script src="https://assets.cantorgymnasium.de/echarts/v5/echarts.min.js"></script>
|
||||||
<style>
|
|
||||||
#chart-container {
|
|
||||||
position: relative;
|
|
||||||
height: 50vh;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<div id="chart-container"></div>
|
<div id="chart-container"></div>
|
||||||
<script>
|
<script>
|
||||||
|
@ -67,46 +67,5 @@
|
|||||||
<script src="{{ . | absURL }}"></script>
|
<script src="{{ . | absURL }}"></script>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
<script src="/pagefind/pagefind-ui.js" type="text/javascript"></script>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
($ => {
|
|
||||||
$(window).on('DOMContentLoaded', () => {
|
|
||||||
new PagefindUI({
|
|
||||||
element: "#search",
|
|
||||||
translations: {
|
|
||||||
placeholder: "Suchen...",
|
|
||||||
zero_results: "Leider konnten keine Ergebnisse zu [SEARCH_TERM] gefunden werden",
|
|
||||||
clear_search: "Löschen"
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
$('#pagefind-search').on('shown.bs.modal', () => {
|
|
||||||
$('.pagefind-ui__search-input').focus();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
})(jQuery);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
var _paq = window._paq = window._paq || [];
|
|
||||||
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
|
||||||
_paq.push(["setDoNotTrack", true]);
|
|
||||||
_paq.push(["disableCookies"]);
|
|
||||||
_paq.push(['trackPageView']);
|
|
||||||
_paq.push(['enableLinkTracking']);
|
|
||||||
(function() {
|
|
||||||
var u="https://analytics.cantorgymnasium.de/";
|
|
||||||
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
|
||||||
_paq.push(['setSiteId', '1']);
|
|
||||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
||||||
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
|
||||||
})();
|
|
||||||
</script>
|
|
||||||
|
|
||||||
{{ $script := resources.Get "js/script.js" | minify }}
|
{{ $script := resources.Get "js/script.js" | minify }}
|
||||||
<script src="{{ $script.Permalink }}"></script>
|
<script src="{{ $script.Permalink }}"></script>
|
||||||
|
|
||||||
<script>
|
|
||||||
new LazyLoad();
|
|
||||||
</script>
|
|
@ -17,9 +17,16 @@
|
|||||||
<link rel="shortcut icon" href="{{ `media/favicon.png` | absURL }}" type="image/x-icon">
|
<link rel="shortcut icon" href="{{ `media/favicon.png` | absURL }}" type="image/x-icon">
|
||||||
<link rel="icon" href="{{ `media/favicon.png` | absURL }}" type="image/x-icon">
|
<link rel="icon" href="{{ `media/favicon.png` | absURL }}" type="image/x-icon">
|
||||||
|
|
||||||
|
{{ if eq .Page.RelPermalink "/" }}
|
||||||
|
<link rel="preload" fetchpriority="high" as="image" href="/media/home/banner.webp" type="image/webp">
|
||||||
|
{{ else }}
|
||||||
|
<link rel="preload" fetchpriority="high" as="image" href="/media/titelbild.webp" type="image/webp">
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
{{ range .Site.Params.plugins.head_js }}
|
{{ range .Site.Params.plugins.head_js }}
|
||||||
<script src="{{ . | absURL }}" type="text/javascript"></script>
|
<script src="{{ . | absURL }}" type="text/javascript"></script>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
<!-- jquery passive listener fixes -->
|
<!-- jquery passive listener fixes -->
|
||||||
<script>
|
<script>
|
||||||
jQuery.event.special.touchstart = {
|
jQuery.event.special.touchstart = {
|
||||||
@ -44,24 +51,6 @@
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<link href="/pagefind/pagefind-ui.css" rel="stylesheet">
|
|
||||||
|
|
||||||
{{ partial "opengraph" . }}
|
{{ partial "opengraph" . }}
|
||||||
{{ partial "twitter" . }}
|
{{ partial "twitter" . }}
|
||||||
|
|
||||||
{{ if eq .Page.RelPermalink "/" }}
|
|
||||||
<link rel="preload" fetchpriority="high" as="image" href="/media/home/banner.webp" type="image/webp">
|
|
||||||
{{ else }}
|
|
||||||
<link rel="preload" fetchpriority="high" as="image" href="/media/titelbild.webp" type="image/webp">
|
|
||||||
{{ end }}
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<div id="pagefind-search" class="modal fade" data-pagefind-ignore>
|
|
||||||
<div class="modal-dialog modal-xl modal-dialog-scrollable modal-dialog-centered" role="document">
|
|
||||||
<div class="modal-content">
|
|
||||||
<div class="modal-body">
|
|
||||||
<div id="search"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@ -32,7 +32,7 @@
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
<div class="navigation w-100">
|
<div class="navigation w-100">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<nav class="navbar navbar-expand-lg navbar-dark p-0">
|
<nav class="navbar navbar-expand-xl navbar-dark p-0">
|
||||||
|
|
||||||
<a class="navbar-brand" href="{{ .Site.BaseURL | relURL }}"><img height="60"
|
<a class="navbar-brand" href="{{ .Site.BaseURL | relURL }}"><img height="60"
|
||||||
src="{{ .Site.Params.logo | absURL }}" class="py-2" alt="{{ .Site.Title }}"></a>
|
src="{{ .Site.Params.logo | absURL }}" class="py-2" alt="{{ .Site.Title }}"></a>
|
||||||
@ -98,3 +98,13 @@
|
|||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
<div id="pagefind-search" class="modal fade" data-pagefind-ignore>
|
||||||
|
<div class="modal-dialog modal-xl modal-dialog-scrollable modal-dialog-centered" role="document">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-body">
|
||||||
|
<div id="search"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -1,7 +1,7 @@
|
|||||||
const PreviewStyles = [
|
const PreviewStyles = [
|
||||||
"https://assets.cantorgymnasium.de/bootstrap/v5/css/bootstrap.min.css",
|
"https://assets.cantorgymnasium.de/bootstrap/v5/css/bootstrap.min.css",
|
||||||
"https://assets.cantorgymnasium.de/fonts/fira/fira.css",
|
"https://assets.cantorgymnasium.de/fonts/fira/fira.min.css",
|
||||||
"https://assets.cantorgymnasium.de/fonts/ubuntu/ubuntu.css",
|
"https://assets.cantorgymnasium.de/fonts/ubuntu/ubuntu.min.css",
|
||||||
"https://assets.cantorgymnasium.de/fonts/mdi/v7/css/materialdesignicons.min.css",
|
"https://assets.cantorgymnasium.de/fonts/mdi/v7/css/materialdesignicons.min.css",
|
||||||
"/css/style.min.css",
|
"/css/style.min.css",
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user