Skip to content

Commit

Permalink
Removes the outage user banner.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdc34 committed Oct 5, 2024
1 parent eab4c1a commit 863da0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions browse/templates/user_banner.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 -%}
<div><h3 style="text-align: center">✅2024-10-01: <a href="https://status.arxiv.org">arxiv.org is back to normal.</a></h3></div>
{%- endif -%}
{%- endmacro -%}
Expand Down

0 comments on commit 863da0e

Please sign in to comment.