Added status

This commit is contained in:
2023-11-04 17:40:09 +01:00
parent 072b907dd1
commit ca0351511a
5 changed files with 65 additions and 4 deletions

View File

@ -9,7 +9,7 @@
<link rel="stylesheet" href="/css/style.css" type="text/css" media="screen">
</head>
<body>
<body class="status-page">
<header id="main-header">
<img class="logo" src="/images/logo_picto.svg" alt="Laboratoire Ouvert Lyonnais" />

View File

@ -9,7 +9,7 @@
<link rel="stylesheet" href="/css/style.css" type="text/css" media="screen">
</head>
<body>
<body class="status-page">
<header id="main-header">
<img class="logo" src="/images/logo_picto.svg" alt="Laboratoire Ouvert Lyonnais" />

19
status/set-status.sh Executable file
View File

@ -0,0 +1,19 @@
#!/bin/bash
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
if [ "$#" = "0" ]; then
echo "Usage set-status.sh [new-status]"
echo ""
echo "[new-status] can be \"opened\" or \"closed\""
echo ""
exit 1
fi
if [ "$1" = "opened" ]; then
ln -sf "index.ouvert.html" "$SCRIPTPATH/index.html"
fi
if [ "$1" = "closed" ]; then
ln -sf "index.fermé.html" "$SCRIPTPATH/index.html"
fi