From 863da0e1e154b606bddee692d473712b3f6136be Mon Sep 17 00:00:00 2001 From: "Brian D. Caruso" Date: Sat, 5 Oct 2024 09:52:25 -0400 Subject: [PATCH] Removes the outage user banner. --- browse/templates/user_banner.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/browse/templates/user_banner.html b/browse/templates/user_banner.html index a3d30da5..7ca32cb8 100644 --- a/browse/templates/user_banner.html +++ b/browse/templates/user_banner.html @@ -20,12 +20,12 @@ {# Set these variables to a string of YYYYMMDD of the start and end date #} {% set BANNER_START_1 = 202409280100 %} -{% set BANNER_END_1 = 202410290100 %} +{% set BANNER_END_1 = 202409290100 %} {% set SLIDE = False %} {%- macro content(request_datetime) -%} {%- set now=request_datetime.strftime("%Y%m%d%H%M")|int -%} - {%- if now >= BANNER_START_1 and now < BANNER_END_1 -%} + {%- if now >= BANNER_START_1 and now < BANNER_END_1 -%}

✅2024-10-01: arxiv.org is back to normal.

{%- endif -%} {%- endmacro -%}