diff options
author | 2021-08-15 15:13:58 -0400 | |
---|---|---|
committer | 2021-08-15 14:13:58 -0500 | |
commit | d68ac85e7f3041ae4a06ba5dcecaf59a2875b393 (patch) | |
tree | ff37f541f9f99f4d393e782fd19e24b9f156404a /examples/minimal/src | |
parent | 072dabe83209c31a357de01dfd97a59ff25e616e (diff) | |
download | astro-d68ac85e7f3041ae4a06ba5dcecaf59a2875b393.tar.gz astro-d68ac85e7f3041ae4a06ba5dcecaf59a2875b393.tar.zst astro-d68ac85e7f3041ae4a06ba5dcecaf59a2875b393.zip |
Add minimal template (#1090)
Diffstat (limited to 'examples/minimal/src')
-rw-r--r-- | examples/minimal/src/pages/index.astro | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/minimal/src/pages/index.astro b/examples/minimal/src/pages/index.astro new file mode 100644 index 000000000..356373630 --- /dev/null +++ b/examples/minimal/src/pages/index.astro @@ -0,0 +1,15 @@ +--- +--- +<html lang="en"> + +<head> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width" /> + <title>Welcome to Astro</title> +</head> + +<body> + <h1>Welcome to <a href="https://astro.build/">Astro</a></h1> +</body> + +</html> |