Astro 是一款现代静态站点生成器 (SSG),专为提高速度而构建,并针对创建快速、SEO 友好的网站进行了优化。它支持多种前端框架,可以轻松地将 React、Vue、Svelte 甚至普通 JavaScript 等技术集成到您的项目中。 Astro 提供的 JavaScript 更少,这意味着加载时间更快,整体性能更好。
在本教程中,我们将介绍以下步骤:
开始之前,请确保您已安装以下软件:
首先,您需要创建一个新的 Astro 项目。打开终端并运行以下命令:
npm create astro@latest
这将提示您为项目命名。为您的项目选择一个名称并继续进行设置。为了简单起见,您可以使用默认设置。
项目设置完毕后,导航到您的项目目录:
cd your-project-name
要启动开发服务器,请运行以下命令:
npm run dev
您的 Astro 项目现在应该在 http://localhost:3000 上运行。
Astro 使用基于文件的路由系统。要创建主页,请导航到 src/pages/ 目录并创建一个名为 index.astro 的文件。
src/pages/index.astro
在index.astro中,添加以下代码:
--- title = "Home" --- <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>{title}</title> </head> <body> <h1>Welcome to My Astro Site</h1> <p>This is the homepage created using Astro.</p> </body> </html>
Astro 使用 frontmatter 语法(顶部的 --- 块)来声明可在文件中使用的变量。
类似地,在 src/pages/ 目录中为“关于”页面创建一个 about.astro 文件。
src/pages/about.astro
添加以下代码:
--- title = "About" --- <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>{title}</title> </head> <body> <h1>About Us</h1> <p>This is the About page of our Astro project.</p> </body> </html>
访问 http://localhost:3000/about 即可看到新页面。
为了避免重复,Astro 支持布局。让我们为我们的网站创建一个基本布局。
创建一个 src/layouts/ 目录和一个名为 MainLayout.astro 的新文件。
src/layouts/MainLayout.astro
为布局添加以下代码:
--- title = "My Astro Site" --- <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>{title}</title> </head> <body> <header> <h1>Welcome to {title}</h1> <nav> <a href="/">Home</a> | <a href="/about">About</a> </nav> </header> <main> <slot /> </main> <footer> <p>© 2024 My Astro Site</p> </footer> </body> </html>
现在,让我们更新 index.astro 和 about.astro 文件以使用此布局。
对于index.astro,将代码替换为:
--- import MainLayout from '../layouts/MainLayout.astro'; title = "Home" --- <MainLayout> <h2>Welcome to My Astro Site</h2> <p>This is the homepage created using Astro.</p> </MainLayout>
同样,对于 about.astro,将代码替换为:
--- import MainLayout from '../layouts/MainLayout.astro'; title = "About" --- <MainLayout> <h2>About Us</h2> <p>This is the About page of our Astro project.</p> </MainLayout>
现在,两个页面共享共同的布局,以确保整个网站的一致性。
Fabform.io 是一项简单的服务,可让您将表单添加到您的网站,而无需后端。您只需要集成他们的表单端点,Fabform 就会处理剩下的事情。
在 src/pages/ 目录中创建一个新文件 contact.astro。
src/pages/contact.astro
添加以下代码作为基本联系表单:
--- import MainLayout from '../layouts/MainLayout.astro'; title = "Contact" --- <MainLayout> <h2>Contact Us</h2> <form action="https://fabform.io/f/your-form-endpoint" method="POST"> <label for="name">Name:</label> <input type="text" id="name" name="name" required /> <label for="email">Email:</label> <input type="email" id="email" name="email" required /> <label for="message">Message:</label> <textarea id="message" name="message" required></textarea> <button type="submit">Send</button> </form> </MainLayout>
现在,当用户提交表单时,Fabform 将处理提交并通过电子邮件或您配置的服务向您发送结果。
您现在拥有一个使用 Astro 的简单、快速的网站,包含多个页面、共享布局和由 Fabform.io 提供支持的联系表单。
├── src │ ├── layouts │ │ └── MainLayout.astro │ ├── pages │ │ ├── about.astro │ │ ├── contact.astro │ │ └── index.astro └── package.json
运行 npm run dev 再次预览您的网站并确保一切按预期工作。
Astro 使得用最少的 JavaScript 和高性能构建静态网站变得异常简单。通过使用其布局和基于组件的架构等功能,我们可以保持代码干净且可重用。使用 Fabform.io 添加联系表单可确保您轻松收集用户反馈,而无需担心构建后端。
请随意通过集成其他组件或框架(例如 React 或 Svelte)来扩展此项目,以探索 Astro 的全部功能!
以上是Astrobuild 教程和联系表的详细内容。更多信息请关注PHP中文网其他相关文章!