-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
neues Design (ich werde kein Designer)
- neue Wildfly-Version (31.0.0Final) - Markdown-Code kann bei Klick kopiert werden (wenn man JS eingeschaltet hat, wenn nicht: manuell selektieren wie vorher :P)
- Loading branch information
1 parent
9a917cd
commit a7122f4
Showing
875 changed files
with
778 additions
and
1,279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
<%@ page session="false" language="java" contentType="text/html; charset=UTF-8" trimDirectiveWhitespaces="true" %> | ||
<jsp:include page="/WEB-INF/includes/header.jsp" /> | ||
<section class="post"> | ||
<h1 style="color:red">403 - Forbidden</h1> | ||
<h2 class="error-description">Forbidden</h2> | ||
<p>Der Server hat die Anfrage verstanden, weigert sich aber, sie zu autorisieren.</p> | ||
</section> | ||
<h1 style="color:red">403 - Forbidden</h1> | ||
<h2 class="error-description">Forbidden</h2> | ||
<p>Der Server hat die Anfrage verstanden, weigert sich aber, sie zu autorisieren.</p> | ||
<jsp:include page="/WEB-INF/includes/footer.jsp" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
<%@ page session="false" language="java" contentType="text/html; charset=UTF-8" trimDirectiveWhitespaces="true" %> | ||
<jsp:include page="/WEB-INF/includes/header.jsp" /> | ||
<section class="post"> | ||
<h1 style="color:red">404</h1> | ||
<h2 class="error-description">Not Found</h2> | ||
<p>Der Server konnte die angeforderte Seite nicht finden.</p> | ||
</section> | ||
<h1 style="color:red">404</h1> | ||
<h2 class="error-description">Not Found</h2> | ||
<p>Der Server konnte die angeforderte Seite nicht finden.</p> | ||
<jsp:include page="/WEB-INF/includes/footer.jsp" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
<%@ page session="false" language="java" contentType="text/html; charset=UTF-8" trimDirectiveWhitespaces="true" %> | ||
<jsp:include page="/WEB-INF/includes/header.jsp" /> | ||
<section class="post"> | ||
<h1 style="color:red">500</h1> | ||
<h2 class="error-description">Internal Server Error</h2> | ||
<p>Es ist ein unerwarteter Fehler aufgetreten.</p> | ||
</section> | ||
<h1 style="color:red">500</h1> | ||
<h2 class="error-description">Internal Server Error</h2> | ||
<p>Es ist ein unerwarteter Fehler aufgetreten.</p> | ||
<jsp:include page="/WEB-INF/includes/footer.jsp" /> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
<%@ page session="false" language="java" contentType="text/html; charset=UTF-8" trimDirectiveWhitespaces="true" %> | ||
<%@ taglib prefix="fn" uri="jakarta.tags.functions" %> | ||
<%@ taglib prefix="settings" uri="/WEB-INF/settings.tld" %> | ||
<footer id="kontakt"> | ||
<h2>Impressum und ViSdP</h2> | ||
<p>${settings:imprint()}</p> | ||
<br /> | ||
<p> | ||
<strong>Telefon:</strong> ${settings:phone()}<br /> | ||
<strong>E-Mail:</strong> <span class="email" id="email">${settings:reversedEmail()}</span> | ||
</p> | ||
<br /> | ||
<h2>Datenschutzerklärung</h2> | ||
<p> | ||
${settings:privacyPolicy()} | ||
</p> | ||
<footer> | ||
<section id="impressum"> | ||
<h2>Impressum und ViSdP</h2> | ||
<p>${settings:imprint()}</p> | ||
<p> | ||
<strong>Telefon:</strong> 0163-17(2*3)-11-18<br> | ||
<strong>E-Mail:</strong> <span class="email" id="email">ed.kcolppihcs@saerdna</span> | ||
</p> | ||
</section> | ||
|
||
<section id="datenschutz"> | ||
<h2>Datenschutzerklärung</h2> | ||
<p> | ||
${settings:privacyPolicy()} | ||
</p> | ||
</section> | ||
</footer> | ||
</main> | ||
|
||
<script> | ||
(function() { | ||
(() => { | ||
document.getElementById("email").innerHTML = '<a href="mailto:' + "${settings:reversedEmail()}".split("").reverse().join("") + '">${settings:reversedEmail()}</a>' | ||
})(); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.