332 lines
11 KiB
Text
332 lines
11 KiB
Text
---
|
|
pageName: ''
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html class="page--<%= pageName %>" lang="en" dir="ltr" style="--scrollbarWidth: 0px; --viewportWidth: calc(100vw - var(--scrollbarWidth));">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
<!-- <link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito&family=DM+Serif+Display:ital@0;1&display=swap" rel="stylesheet"> -->
|
|
|
|
<link rel="preconnect" href="https://api.fonts.coollabs.io" crossorigin>
|
|
<link href="https://api.fonts.coollabs.io/css2?family=Bebas+Neue&family=Nunito&family=DM+Serif+Display&display=swap" rel="stylesheet">
|
|
|
|
<!-- Required Core Stylesheet -->
|
|
<!-- <link rel="stylesheet" href="/node_modules/@glidejs/glide/dist/css/glide.core.css"> -->
|
|
|
|
<!-- Optional Theme Stylesheet -->
|
|
<!-- <link rel="stylesheet" href="/node_modules/@glidejs/glide/dist/css/glide.theme.css"> -->
|
|
|
|
<script>
|
|
|
|
window.onload = setScrollbarVariable;
|
|
document.onload = setScrollbarVariable;
|
|
window.onresize = setScrollbarVariable;
|
|
|
|
function setScrollbarVariable() {
|
|
//alert(window.innerWidth + " - " + document.body.clientWidth);
|
|
//const scrollbarWidth = window.innerWidth - document.body.clientWidth;
|
|
|
|
const viewportDependantWidth = (typeof window.orientation !== "undefined") ? screen.width : window.innerWidth;
|
|
|
|
//console.log(screen.width + " " + window.innerWidth);
|
|
const scrollbarWidth = viewportDependantWidth - document.body.clientWidth;
|
|
document.documentElement.style.setProperty("--scrollbarWidth", `${scrollbarWidth}px`);
|
|
}
|
|
|
|
</script>
|
|
|
|
<style>
|
|
:root{
|
|
--viewportWidth: calc(100vw - var(--scrollbarWidth));
|
|
}
|
|
</style>
|
|
|
|
<title>
|
|
<%= site.title %>
|
|
</title>
|
|
<meta name="description" content="<%= (!!locals.description) ? description : site.description %>" />
|
|
<meta name="author" content="<%= site.author %>" />
|
|
<meta property="og:title" content="<%= site.title %>" />
|
|
<meta property="og:description" content="<%= (!!locals.description) ? description : site.description %>" />
|
|
<meta property="og:locale" content="<%= site.locale %>" />
|
|
<meta property="og:site_name" content="<%= site.site_name %>" />
|
|
<script async defer data-website-id="f74324cf-e86f-4993-8537-63ccd9698204" src="https://s9-analytics.altweb.me/umami.js"></script>
|
|
<% if (locals.tags=="posts" ) { %>
|
|
<meta property="og:type" content="article" />
|
|
<meta property="article:published_time" content="<%= date.toISOString() %>" />
|
|
<script type="application/ld+json">
|
|
{
|
|
"description": "<%= (!!locals.description) ? description : site.description %>",
|
|
"author": { "@type": "Person", "name": "<%= site.author %>" },
|
|
"@type": "BlogPosting",
|
|
"url": "<%= `${site.url}${page.url}` %>",
|
|
"publisher": {
|
|
"@type": "Organization",
|
|
"logo": {
|
|
"@type": "ImageObject",
|
|
"url": "<%= `${site.url}/assets/images/logo.png` %>"
|
|
},
|
|
"name": "<%= site.author %>"
|
|
},
|
|
"headline": "<%= site.title %>",
|
|
"datePublished": "<%= date.toISOString() %>",
|
|
"mainEntityOfPage": {
|
|
"@type": "WebPage",
|
|
"@id": "<%= `${site.url}${page.url}` %>"
|
|
},
|
|
"@context": "http://schema.org"
|
|
}
|
|
</script>
|
|
<% } %>
|
|
<%- include('webpack.ejs') %>
|
|
<% if (page.url=="/" ) { %>
|
|
|
|
<% } %>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="page" class="max-w-screen-lg mx-auto">
|
|
<header class="site-header ">
|
|
<a href="/"><img class="site-logo" src="<%= `/assets/images/logo.png` %>" alt=""></a>
|
|
<h1 class="site-title">
|
|
<%= site.title %>
|
|
</h1>
|
|
<!-- <div class="text-xl"><%= site.description %></div> -->
|
|
</header>
|
|
|
|
<main class="page-content">
|
|
<%- content %>
|
|
</main>
|
|
|
|
<% include /footer %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- <script src="https://unpkg.com/@glidejs/glide@3.3.0/dist/glide.js"></script> -->
|
|
|
|
<!-- <script src="/node_modules/@glidejs/glide/dist/glide.modular.esm.js"></script> -->
|
|
<!-- <script src="/js/eleventy.js" type="module" async></script> -->
|
|
|
|
<!-- this below were the last ones that i used -->
|
|
<!-- <script src="./node_modules/@glidejs/glide/dist/glide.min.js"></script> -->
|
|
<script src="/node_modules/blueimp-md5/js/md5.min.js"></script>
|
|
|
|
<script>
|
|
// new Glide('.glide').mount({
|
|
// type: 'carousel',
|
|
// startAt: 0,
|
|
// perView: 1,
|
|
// autoplay: 1000,
|
|
// bound: true,
|
|
// rewind: false
|
|
// })
|
|
// new Glide('.glide').mount()
|
|
</script>
|
|
|
|
<script>
|
|
|
|
var siteUrl = "<%= site.url %>";
|
|
|
|
console.log(siteUrl);
|
|
|
|
document.getElementById('fromEmail').addEventListener('input', function () {
|
|
|
|
const fromEmail = document.getElementById('fromEmail');
|
|
const message = document.getElementById('message');
|
|
const emailError = document.getElementById('emailError');
|
|
const otherError = document.getElementById('otherError');
|
|
const success = document.getElementById('success');
|
|
const contactSubmit = document.getElementById('contactSubmit');
|
|
|
|
// if (/(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9]))\.){3}(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9])|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/.test(fromEmail.value)) {
|
|
// contactSubmit.disabled = false;
|
|
// alert.classList.remove('form-alert--visible');
|
|
// } else {
|
|
// contactSubmit.disabled = true;
|
|
// alert.classList.add('form-alert--visible');
|
|
// }
|
|
|
|
emailError.classList.remove('form-alert--visible');
|
|
otherError.classList.remove('form-alert--visible');
|
|
success.classList.remove('form-alert--visible');
|
|
|
|
});
|
|
|
|
document.getElementById('contactSubmit').addEventListener('click', function () {
|
|
|
|
const fromEmail = document.getElementById('fromEmail');
|
|
const message = document.getElementById('message');
|
|
const emailError = document.getElementById('emailError');
|
|
const otherError = document.getElementById('otherError');
|
|
const success = document.getElementById('success');
|
|
|
|
if (/(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9]))\.){3}(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9])|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/.test(fromEmail.value)) {
|
|
/* succeeded */
|
|
emailError.classList.remove('form-alert--visible');
|
|
|
|
var details = {
|
|
'hash': md5(fromEmail.value + 'erkbn234987kjs'),
|
|
'fromEmail': fromEmail.value,
|
|
'message': message.value,
|
|
'title': 'Support - Visual Anatomy 3D (site)'
|
|
};
|
|
|
|
var formBody = [];
|
|
for (var property in details) {
|
|
var encodedKey = encodeURIComponent(property);
|
|
var encodedValue = encodeURIComponent(details[property]);
|
|
formBody.push(encodedKey + "=" + encodedValue);
|
|
}
|
|
formBody = formBody.join("&");
|
|
|
|
try {
|
|
|
|
fetch(siteUrl + 'app/php/email/v1/SendSupportMail.php', {
|
|
method: 'POST',
|
|
//mode: 'no-cors',
|
|
headers: {
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
},
|
|
body: formBody,
|
|
})
|
|
.then(response => {
|
|
//console.log("response.status: " + response.status);
|
|
if(response.status === 200){
|
|
return response.text();
|
|
} else {
|
|
otherError.classList.add('form-alert--visible');
|
|
}
|
|
})
|
|
.then(data => {
|
|
//console.log("data:");
|
|
//console.log(data);
|
|
switch (data) {
|
|
case "succesSendingSupportEmail":
|
|
success.classList.add('form-alert--visible');
|
|
emailError.classList.remove('form-alert--visible');
|
|
otherError.classList.remove('form-alert--visible');
|
|
fromEmail.value = '';
|
|
message.value = '';
|
|
break;
|
|
case "invalidEmailAdres":
|
|
emailError.classList.add('form-alert--visible');
|
|
break;
|
|
case "failedSendingSupportEmail":
|
|
case "failedHash":
|
|
otherError.classList.add('form-alert--visible');
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
//console.log(data)
|
|
});
|
|
|
|
} catch (error) {
|
|
otherError.classList.add('form-alert--visible');
|
|
}
|
|
|
|
} else {
|
|
/* failed */
|
|
emailError.classList.add('form-alert--visible');
|
|
}
|
|
|
|
});
|
|
|
|
// https://github.com/Modernizr/Modernizr/blob/master/feature-detects/css/flexgap.js
|
|
|
|
function checkFlexGap() {
|
|
// create flex container with row-gap set
|
|
var flex = document.createElement("div");
|
|
flex.style.display = "flex";
|
|
flex.style.flexDirection = "column";
|
|
flex.style.rowGap = "1px";
|
|
|
|
// create two, elements inside it
|
|
flex.appendChild(document.createElement("div"));
|
|
flex.appendChild(document.createElement("div"));
|
|
|
|
// append to the DOM (needed to obtain scrollHeight)
|
|
document.body.appendChild(flex);
|
|
var isSupported = flex.scrollHeight === 1; // flex container should be 1px high from the row-gap
|
|
//flex.parentNode.removeChild(flex);
|
|
|
|
return isSupported;
|
|
}
|
|
|
|
console.log(checkFlexGap());
|
|
|
|
if (checkFlexGap()) {
|
|
document.documentElement.classList.add("flexbox-gap");
|
|
} else {
|
|
document.documentElement.classList.add("no-flexbox-gap");
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
<!-- <style>
|
|
.site-logo {
|
|
height: 5rem;
|
|
width: 5rem;
|
|
transform: rotateZ(0deg) translateY(0.4rem);
|
|
transition: 0.2s all;
|
|
border: 3px solid var(--c-1);
|
|
border-radius: 1rem;
|
|
}
|
|
|
|
.site-logo:hover {
|
|
transform: rotateZ(4deg) translateY(0.4rem) scale(1.1);
|
|
}
|
|
|
|
.site-header {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: baseline;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.no-flexbox-gap .site-header>*:not(:last-child) {
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.site-title {
|
|
font-family: Bebas Neue;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-size: 3rem;
|
|
line-height: 1;
|
|
letter-spacing: 0.24em;
|
|
text-transform: uppercase;
|
|
width: auto;
|
|
margin: 3rem 0 0 0;
|
|
}
|
|
|
|
#page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.page-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
</style> -->
|