11 lines
472 B
Java
11 lines
472 B
Java
package hsmw.jotto5.beleg.views;
|
|
|
|
/**
|
|
* Enthält Parameter und Funktionen welche auf alle Views zutreffen.
|
|
*/
|
|
public class Defaults {
|
|
|
|
public static final String HTMLHEADER = "<!DOCTYPE html><html><title>Beleg SoSe 2025</title><link rel=stylesheet href=\"/style.css\"><head></head><body><div id=\"content\"><main><hr>";
|
|
public static final String HTMLFOOTER = "</main><footer><i><center>Hier könnte ihr Text stehen!</center></i></footer></div></body></html>";
|
|
|
|
}
|