.astro files

Front Matter

  • Available on build. Server side stuff before build process

---

---

Ex 1: Front Matter data

---
const clientName = 'Polytechnic Pals'
---

{clientName}

Ex 2: Get the Year

---
const theYear = new Date();
---

{theYear..getFullYear()}

Ex 3: Objects

Ex 4: Map Over Data

Ex 5: External JSON Data

Ex 6: API Data

Last updated