From a13d6f007be2b43704b6237cacf668452172e591 Mon Sep 17 00:00:00 2001 From: Jeffrey Armstrong Date: Thu, 20 May 2021 11:14:31 -0400 Subject: Added a build date function. Implemented about and home templates for gemini interface. --- common/utilities.F90 | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'common') diff --git a/common/utilities.F90 b/common/utilities.F90 index b0afc8f..d96ec49 100644 --- a/common/utilities.F90 +++ b/common/utilities.F90 @@ -578,4 +578,13 @@ contains end subroutine echo_file_stdout -end module utilities \ No newline at end of file + function build_date() + implicit none + + character(64)::build_date + + build_date = __DATE__ + + end function build_date + +end module utilities -- cgit v1.2.3