diff options
Diffstat (limited to 'src/pages/history')
| -rw-r--r-- | src/pages/history/[date].astro | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/pages/history/[date].astro b/src/pages/history/[date].astro new file mode 100644 index 0000000..0bd1e40 --- /dev/null +++ b/src/pages/history/[date].astro @@ -0,0 +1,23 @@ +--- +import { Geshem } from '../../components/Geshem'; +import '../../styles/global.css'; +import '../../styles/geshem.css'; + +export const prerender = false; + +const { date } = Astro.params; +--- + +<html lang="en"> + <head> + <meta charset="utf-8" /> + <link rel="icon" type="image/png" href="/favicon.png" /> + <meta name="viewport" content="width=device-width" /> + <meta name="generator" content={Astro.generator} /> + <title>Geshem - Rain Radar History</title> + <meta name="description" content="Israel Rain Radar History" /> + </head> + <body> + <Geshem client:load date={date} /> + </body> +</html>
\ No newline at end of file |
