diff options
Diffstat (limited to 'examples/portfolio/src/pages')
-rw-r--r-- | examples/portfolio/src/pages/$projects.astro | 3 | ||||
-rw-r--r-- | examples/portfolio/src/pages/404.astro | 4 | ||||
-rw-r--r-- | examples/portfolio/src/pages/about.astro | 4 | ||||
-rw-r--r-- | examples/portfolio/src/pages/index.astro | 3 |
4 files changed, 10 insertions, 4 deletions
diff --git a/examples/portfolio/src/pages/$projects.astro b/examples/portfolio/src/pages/$projects.astro index 9a3407b83..43b39ca28 100644 --- a/examples/portfolio/src/pages/$projects.astro +++ b/examples/portfolio/src/pages/$projects.astro @@ -5,6 +5,7 @@ import Nav from '../components/Nav/index.jsx'; import PortfolioPreview from '../components/PortfolioPreview/index.jsx'; let { collection } = Astro.props; +let lang = 'en'; export async function createCollection() { return { async data() { @@ -16,7 +17,7 @@ export async function createCollection() { } --- -<html> +<html lang={ lang ?? 'en' }> <head> <MainHead title="All Projects | Jeanine White" /> <style lang="scss"> diff --git a/examples/portfolio/src/pages/404.astro b/examples/portfolio/src/pages/404.astro index 6929c61e9..2368b2531 100644 --- a/examples/portfolio/src/pages/404.astro +++ b/examples/portfolio/src/pages/404.astro @@ -2,9 +2,11 @@ import MainHead from '../components/MainHead.astro'; import Footer from '../components/Footer/index.jsx'; import Nav from '../components/Nav/index.jsx'; + +let lang = 'en'; --- -<html> +<html lang={ lang ?? 'en' }> <head> <MainHead title="Not Found" /> </head> diff --git a/examples/portfolio/src/pages/about.astro b/examples/portfolio/src/pages/about.astro index 4ae7c3f08..50e6dac62 100644 --- a/examples/portfolio/src/pages/about.astro +++ b/examples/portfolio/src/pages/about.astro @@ -2,9 +2,11 @@ import MainHead from '../components/MainHead.astro'; import Footer from '../components/Footer/index.jsx'; import Nav from '../components/Nav/index.jsx'; + +let lang = 'en'; --- -<html> +<html lang={ lang ?? 'en' }> <head> <MainHead title="About | Jeanine White" /> <style lang="scss"> diff --git a/examples/portfolio/src/pages/index.astro b/examples/portfolio/src/pages/index.astro index 4638bb3e9..2a2009682 100644 --- a/examples/portfolio/src/pages/index.astro +++ b/examples/portfolio/src/pages/index.astro @@ -9,11 +9,12 @@ import PorfolioPreview from '../components/PortfolioPreview/index.jsx'; // Data Fetching: List all Markdown posts in the repo. const projects = Astro.fetchContent('./project/**/*.md'); const featuredProject = projects[0]; +let lang = 'en'; // Full Astro Component Syntax: // https://github.com/snowpackjs/astro/blob/main/docs/core-concepts/astro-components.md --- -<html> +<html lang={ lang ?? 'en' }> <head> <MainHead title="Jeanine White: Personal Site" /> <style lang="scss"> |