9 lines
298 B
D
9 lines
298 B
D
/**
|
|
* Constants which are passed to templates while rendering.
|
|
*/
|
|
class Constants {
|
|
public static immutable string SITE_NAME = "Chris Josten's site";
|
|
public static immutable string SITE_URL = "https://chris.netsoj.nl";
|
|
public static immutable string COPYRIGHT = "© Chris Josten, 2020";
|
|
}
|