准备好…
打开你的代码编辑器,然后在资源管理器文件窗口中导航至 src/pages/index.astro,并单击文件名打开文件内容。
src/pages/index.astro
index.astro 文件的内容应该如下所示:
index.astro
------ <html lang="zh-cn"> <head> <meta charset="utf-8" /> <link rel="icon" type ="image/svg+xml" href="/favicon.ico" /> <meta name="viewport" content="width=device-width" /> <meta name="generator" content = {Astro.generator} > <title>Astro</title> </head> <body> <h1>Astro</h1> </body></html>
编辑页面 <body> 的内容。
<body>
在编辑器中更改页面上的标题文本并保存。
<body> <h1>Astro</h1> <h1>我的 Astro 站点</h1></body>
检查浏览器预览,你应该会看到你的页面内容已更新。
恭喜!你现在是一名 Astro 开发人员!
本单元的其余部分,将教会你版本控制和发布可以炫耀的网站。