chris-website/source/nl/netsoj/chris/blog/constants.d

15 lines
444 B
D
Raw Normal View History

2021-11-18 18:28:24 +00:00
module nl.netsoj.chris.blog.constants;
/**
* Constants which are passed to templates while rendering.
*/
2020-06-24 15:40:20 +00:00
class Constants {
2020-06-27 22:11:50 +00:00
public static immutable string SITE_NAME = "Chris Josten's site";
2021-11-18 18:28:24 +00:00
debug {
public static immutable string SITE_URL = "https://kortstondig.chris.netsoj.nl";
} else {
public static immutable string SITE_URL = "https://chris.netsoj.nl";
}
2020-06-24 15:40:20 +00:00
public static immutable string COPYRIGHT = "© Chris Josten, 2020";
}