chris-website/source/nl/netsoj/chris/blog/constants.d
2021-11-18 19:28:24 +01:00

15 lines
444 B
D

module nl.netsoj.chris.blog.constants;
/**
* Constants which are passed to templates while rendering.
*/
class Constants {
public static immutable string SITE_NAME = "Chris Josten's site";
debug {
public static immutable string SITE_URL = "https://kortstondig.chris.netsoj.nl";
} else {
public static immutable string SITE_URL = "https://chris.netsoj.nl";
}
public static immutable string COPYRIGHT = "© Chris Josten, 2020";
}