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. --- captain/web.f90 | 2 ++ 1 file changed, 2 insertions(+) (limited to 'captain/web.f90') diff --git a/captain/web.f90 b/captain/web.f90 index cc3a552..cd94783 100644 --- a/captain/web.f90 +++ b/captain/web.f90 @@ -564,6 +564,7 @@ contains use http, only: HTTP_CODE_SUCCESS, HTTP_CODE_NOTFOUND use request_utils, only: get_job_page_title, handle_instruction_command use captain_db, only: scan_instructions_for_db + use utilities, only: build_date implicit none type(request), intent(in)::req @@ -631,6 +632,7 @@ contains else if(trim(req%location) == "/about.html") then call page%assign('title', 'About') + call page%assign('build_date', build_date()) else if(trim(req%location) == "/instructions.html") then -- cgit v1.2.3