8 lines
224 B
D
8 lines
224 B
D
/**
|
|
* Constants which are passed to templates while rendering.
|
|
*/
|
|
class Constants {
|
|
public static immutable string SITE_NAME = "Chris Netsoj.nl";
|
|
public static immutable string COPYRIGHT = "© Chris Josten, 2020";
|
|
}
|