mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 06:18:47 +02:00
27 lines
370 B
Bash
27 lines
370 B
Bash
#!/bin/sh
|
|
# Hebrew date shell script
|
|
#
|
|
# This file is part of REMIND.
|
|
# Copyright (C) 1992-2026 by Dianne Skoll
|
|
|
|
echo Content-type: text/html
|
|
echo ""
|
|
|
|
cat <<EOM
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE>Hebrew date</TITLE>
|
|
<LINK rel="stylesheet" href="%IMAGEBASE%/calendar.css">
|
|
</HEAD>
|
|
<BODY>
|
|
|
|
<H1>Hebrew date</H1>
|
|
|
|
EOM
|
|
|
|
$REMIND -arqh $DIR/hebdate.rem
|
|
|
|
echo "</BODY>"
|
|
echo "</HTML>"
|
|
exit 0
|