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/external.f90 | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'captain/external.f90') diff --git a/captain/external.f90 b/captain/external.f90 index f3efaaf..e691dfb 100644 --- a/captain/external.f90 +++ b/captain/external.f90 @@ -544,6 +544,7 @@ contains use logging use server_response use request_utils, only: get_job_page_title + use utilities, only: build_date implicit none class(request), intent(in)::req @@ -551,11 +552,18 @@ contains character(1024)::template_file type(template)::page character(len=:), pointer::contents - character(64)::first + character(64)::first, template_name character(128)::job_page_title ! Open the base template - call template_filepath("index.gmi", template_file) + if(trim(req%location) == "/" .or. trim(req%location) == "/index.gmi") then + template_name = "home.gmi" + else if(trim(req%location) == "/about.gmi") then + template_name = "about.gmi" + else + template_name = "index.gmi" + end if + call template_filepath(template_name, template_file) call page%init(trim(template_file)) call write_log("Processing request", LOG_INFO) @@ -589,6 +597,7 @@ contains else if(trim(req%location) == "/about.gmi") then call page%assign('title', 'About') + call page%assign('build_date', build_date()) else if(trim(req%location) == "/instructions.gmi") then -- cgit v1.2.3