Compare commits

..

No commits in common. "staging" and "master" have entirely different histories.

3 changed files with 1 additions and 23 deletions

View File

@ -13,5 +13,4 @@
.quote div {
font-weight: 400;
text-align: left;
}

View File

@ -1,20 +0,0 @@
$(document).ready(function() {
$("#contactForm").on("submit", function(event) {
event.preventDefault(); // Verhindert das Standard-Formular-Submit
// AJAX-Anfrage senden
$.ajax({
url: 'contactform.php',
type: 'POST',
data: $(this).serialize(), // Alle Formulardaten serialisieren
success: function(response) {
// Rückmeldung anzeigen
$("#responseMessage").html(response);
},
error: function() {
// Fehlernachricht anzeigen
$("#responseMessage").html("Es gab einen Fehler beim Senden der Nachricht.");
}
});
});
});

View File

@ -6,7 +6,6 @@
{{ $util := resources.Get "js/util.js" }}
{{ $main := resources.Get "js/main.js" }}
{{ $demo := resources.Get "js/demo.js" }}
{{ $contact := resources.Get "js/contact.js" }}
{{ $js := slice $jQuery $scrollex $scrolly $browser $breakpoints $util $main $demo $contact | resources.Concat "js/bundle.js" | minify | fingerprint }}
{{ $js := slice $jQuery $scrollex $scrolly $browser $breakpoints $util $main $demo | resources.Concat "js/bundle.js" | minify | fingerprint }}
<script src="{{ $js.RelPermalink }}" integrity="{{ $js.Data.Integrity }}" async crossorigin="anonymous"></script>