chris-website/source/constants.d

9 lines
294 B
D
Raw Normal View History

/**
* Constants which are passed to templates while rendering.
*/
2020-06-24 15:40:20 +00:00
class Constants {
public static immutable string SITE_NAME = "Chris Netsoj.nl";
2020-06-27 14:54:06 +00:00
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";
}