├── .cz.json ├── .env.EXAMPLE ├── .eslintrc.cjs ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── SECURITY.md ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg ├── pre-commit └── pre-push ├── .npmrc ├── .nvmrc ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc.mjs ├── .stackblitzrc ├── .stylelintrc.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── commitlint.config.cjs ├── eslint.config.js ├── images └── rodneylab-github-sveltekit-seo.png ├── jsconfig.json ├── netlify.toml ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── sandbox.config.json ├── src ├── app.html ├── content │ └── blog │ │ ├── best-medium-format-camera-for-starting-out │ │ └── index.md │ │ ├── folding-camera │ │ └── index.md │ │ └── twin-lens-reflex-camera │ │ └── index.md ├── global.d.ts ├── hooks.server.js ├── lib │ ├── assets │ │ ├── blog │ │ │ ├── best-medium-format-camera-for-starting-out │ │ │ │ ├── best-medium-format-camera-for-starting-out-open-graph-square.jpg │ │ │ │ ├── best-medium-format-camera-for-starting-out-open-graph.jpg │ │ │ │ ├── best-medium-format-camera-for-starting-out-twitter.jpg │ │ │ │ └── best-medium-format-camera-for-starting-out.jpg │ │ │ ├── folding-camera │ │ │ │ ├── folding-camera-open-graph-square.jpg │ │ │ │ ├── folding-camera-open-graph.jpg │ │ │ │ ├── folding-camera-twitter.jpg │ │ │ │ └── folding-camera.jpg │ │ │ └── twin-lens-reflex-camera │ │ │ │ ├── twin-lens-reflex-camera-open-graph-square.jpg │ │ │ │ ├── twin-lens-reflex-camera-open-graph.jpg │ │ │ │ ├── twin-lens-reflex-camera-twitter.jpg │ │ │ │ └── twin-lens-reflex-camera.jpg │ │ └── home │ │ │ ├── home-open-graph-square.jpg │ │ │ ├── home-open-graph.jpg │ │ │ ├── home-twitter.jpg │ │ │ └── home.jpg │ ├── components │ │ ├── BannerImage.svelte │ │ ├── BlogPost.svelte │ │ ├── BlogPostSummary.svelte │ │ ├── BlogRoll.svelte │ │ ├── Card.svelte │ │ ├── ExternalLink.svelte │ │ ├── Footer.svelte │ │ ├── Header.svelte │ │ ├── Icons │ │ │ ├── Camera.svelte │ │ │ ├── Email.svelte │ │ │ ├── Facebook.svelte │ │ │ ├── GitHub.svelte │ │ │ ├── LinkedIn.svelte │ │ │ ├── Telegram.svelte │ │ │ ├── Tiktok.svelte │ │ │ ├── Twitter.svelte │ │ │ └── Wire.svelte │ │ ├── Link.svelte │ │ ├── RodneyLabCredit.svelte │ │ └── SEO │ │ │ ├── OpenGraph.svelte │ │ │ ├── SchemaOrg.svelte │ │ │ ├── Twitter.svelte │ │ │ └── index.svelte │ ├── config │ │ └── website.js │ ├── constants │ │ └── entities.js │ ├── generated │ │ └── posts │ │ │ ├── best-medium-format-camera-for-starting-out.js │ │ │ ├── folding-camera.js │ │ │ └── twin-lens-reflex-camera.js │ ├── styles │ │ ├── index.scss │ │ ├── normalise.css │ │ ├── styles.scss │ │ └── variables.scss │ └── utilities │ │ └── blog.js └── routes │ ├── +error.svelte │ ├── +layout.js │ ├── +layout.svelte │ ├── +page.js │ ├── +page.svelte │ ├── [slug] │ ├── +layout.svelte │ ├── +page.js │ ├── +page.server.js │ └── +page.svelte │ ├── contact │ └── +page.svelte │ ├── manifest.webmanifest │ └── +server.js │ └── sitemap.xml │ └── +server.js ├── static ├── apple-touch-icon.png ├── assets │ └── rodneylab-logo.png ├── favicon.ico ├── favicon.png ├── icon-192.png ├── icon-512.png ├── icon.svg └── robots.txt ├── svelte.config.js └── vite.config.js /.cz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.cz.json -------------------------------------------------------------------------------- /.env.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.env.EXAMPLE -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | pnpm commitlint --edit "$1" 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | pnpm prettier:check && pnpm lint:scss 2 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | pnpm run check 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.prettierrc.mjs -------------------------------------------------------------------------------- /.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.stackblitzrc -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/eslint.config.js -------------------------------------------------------------------------------- /images/rodneylab-github-sveltekit-seo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/images/rodneylab-github-sveltekit-seo.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/jsconfig.json -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/sandbox.config.json -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/app.html -------------------------------------------------------------------------------- /src/content/blog/best-medium-format-camera-for-starting-out/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/content/blog/best-medium-format-camera-for-starting-out/index.md -------------------------------------------------------------------------------- /src/content/blog/folding-camera/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/content/blog/folding-camera/index.md -------------------------------------------------------------------------------- /src/content/blog/twin-lens-reflex-camera/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/content/blog/twin-lens-reflex-camera/index.md -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/hooks.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/hooks.server.js -------------------------------------------------------------------------------- /src/lib/assets/blog/best-medium-format-camera-for-starting-out/best-medium-format-camera-for-starting-out-open-graph-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/blog/best-medium-format-camera-for-starting-out/best-medium-format-camera-for-starting-out-open-graph-square.jpg -------------------------------------------------------------------------------- /src/lib/assets/blog/best-medium-format-camera-for-starting-out/best-medium-format-camera-for-starting-out-open-graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/blog/best-medium-format-camera-for-starting-out/best-medium-format-camera-for-starting-out-open-graph.jpg -------------------------------------------------------------------------------- /src/lib/assets/blog/best-medium-format-camera-for-starting-out/best-medium-format-camera-for-starting-out-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/blog/best-medium-format-camera-for-starting-out/best-medium-format-camera-for-starting-out-twitter.jpg -------------------------------------------------------------------------------- /src/lib/assets/blog/best-medium-format-camera-for-starting-out/best-medium-format-camera-for-starting-out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/blog/best-medium-format-camera-for-starting-out/best-medium-format-camera-for-starting-out.jpg -------------------------------------------------------------------------------- /src/lib/assets/blog/folding-camera/folding-camera-open-graph-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/blog/folding-camera/folding-camera-open-graph-square.jpg -------------------------------------------------------------------------------- /src/lib/assets/blog/folding-camera/folding-camera-open-graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/blog/folding-camera/folding-camera-open-graph.jpg -------------------------------------------------------------------------------- /src/lib/assets/blog/folding-camera/folding-camera-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/blog/folding-camera/folding-camera-twitter.jpg -------------------------------------------------------------------------------- /src/lib/assets/blog/folding-camera/folding-camera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/blog/folding-camera/folding-camera.jpg -------------------------------------------------------------------------------- /src/lib/assets/blog/twin-lens-reflex-camera/twin-lens-reflex-camera-open-graph-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/blog/twin-lens-reflex-camera/twin-lens-reflex-camera-open-graph-square.jpg -------------------------------------------------------------------------------- /src/lib/assets/blog/twin-lens-reflex-camera/twin-lens-reflex-camera-open-graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/blog/twin-lens-reflex-camera/twin-lens-reflex-camera-open-graph.jpg -------------------------------------------------------------------------------- /src/lib/assets/blog/twin-lens-reflex-camera/twin-lens-reflex-camera-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/blog/twin-lens-reflex-camera/twin-lens-reflex-camera-twitter.jpg -------------------------------------------------------------------------------- /src/lib/assets/blog/twin-lens-reflex-camera/twin-lens-reflex-camera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/blog/twin-lens-reflex-camera/twin-lens-reflex-camera.jpg -------------------------------------------------------------------------------- /src/lib/assets/home/home-open-graph-square.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/home/home-open-graph-square.jpg -------------------------------------------------------------------------------- /src/lib/assets/home/home-open-graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/home/home-open-graph.jpg -------------------------------------------------------------------------------- /src/lib/assets/home/home-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/home/home-twitter.jpg -------------------------------------------------------------------------------- /src/lib/assets/home/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/assets/home/home.jpg -------------------------------------------------------------------------------- /src/lib/components/BannerImage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/BannerImage.svelte -------------------------------------------------------------------------------- /src/lib/components/BlogPost.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/BlogPost.svelte -------------------------------------------------------------------------------- /src/lib/components/BlogPostSummary.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/BlogPostSummary.svelte -------------------------------------------------------------------------------- /src/lib/components/BlogRoll.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/BlogRoll.svelte -------------------------------------------------------------------------------- /src/lib/components/Card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Card.svelte -------------------------------------------------------------------------------- /src/lib/components/ExternalLink.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/ExternalLink.svelte -------------------------------------------------------------------------------- /src/lib/components/Footer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Footer.svelte -------------------------------------------------------------------------------- /src/lib/components/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Header.svelte -------------------------------------------------------------------------------- /src/lib/components/Icons/Camera.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Icons/Camera.svelte -------------------------------------------------------------------------------- /src/lib/components/Icons/Email.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Icons/Email.svelte -------------------------------------------------------------------------------- /src/lib/components/Icons/Facebook.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Icons/Facebook.svelte -------------------------------------------------------------------------------- /src/lib/components/Icons/GitHub.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Icons/GitHub.svelte -------------------------------------------------------------------------------- /src/lib/components/Icons/LinkedIn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Icons/LinkedIn.svelte -------------------------------------------------------------------------------- /src/lib/components/Icons/Telegram.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Icons/Telegram.svelte -------------------------------------------------------------------------------- /src/lib/components/Icons/Tiktok.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Icons/Tiktok.svelte -------------------------------------------------------------------------------- /src/lib/components/Icons/Twitter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Icons/Twitter.svelte -------------------------------------------------------------------------------- /src/lib/components/Icons/Wire.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Icons/Wire.svelte -------------------------------------------------------------------------------- /src/lib/components/Link.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/Link.svelte -------------------------------------------------------------------------------- /src/lib/components/RodneyLabCredit.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/RodneyLabCredit.svelte -------------------------------------------------------------------------------- /src/lib/components/SEO/OpenGraph.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/SEO/OpenGraph.svelte -------------------------------------------------------------------------------- /src/lib/components/SEO/SchemaOrg.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/SEO/SchemaOrg.svelte -------------------------------------------------------------------------------- /src/lib/components/SEO/Twitter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/SEO/Twitter.svelte -------------------------------------------------------------------------------- /src/lib/components/SEO/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/components/SEO/index.svelte -------------------------------------------------------------------------------- /src/lib/config/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/config/website.js -------------------------------------------------------------------------------- /src/lib/constants/entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/constants/entities.js -------------------------------------------------------------------------------- /src/lib/generated/posts/best-medium-format-camera-for-starting-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/generated/posts/best-medium-format-camera-for-starting-out.js -------------------------------------------------------------------------------- /src/lib/generated/posts/folding-camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/generated/posts/folding-camera.js -------------------------------------------------------------------------------- /src/lib/generated/posts/twin-lens-reflex-camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/generated/posts/twin-lens-reflex-camera.js -------------------------------------------------------------------------------- /src/lib/styles/index.scss: -------------------------------------------------------------------------------- 1 | @use './styles.scss'; 2 | -------------------------------------------------------------------------------- /src/lib/styles/normalise.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/styles/normalise.css -------------------------------------------------------------------------------- /src/lib/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/styles/styles.scss -------------------------------------------------------------------------------- /src/lib/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/styles/variables.scss -------------------------------------------------------------------------------- /src/lib/utilities/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/lib/utilities/blog.js -------------------------------------------------------------------------------- /src/routes/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/routes/+error.svelte -------------------------------------------------------------------------------- /src/routes/+layout.js: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/routes/+page.js -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/[slug]/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/routes/[slug]/+layout.svelte -------------------------------------------------------------------------------- /src/routes/[slug]/+page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/routes/[slug]/+page.js -------------------------------------------------------------------------------- /src/routes/[slug]/+page.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/routes/[slug]/+page.server.js -------------------------------------------------------------------------------- /src/routes/[slug]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/routes/[slug]/+page.svelte -------------------------------------------------------------------------------- /src/routes/contact/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/routes/contact/+page.svelte -------------------------------------------------------------------------------- /src/routes/manifest.webmanifest/+server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/routes/manifest.webmanifest/+server.js -------------------------------------------------------------------------------- /src/routes/sitemap.xml/+server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/src/routes/sitemap.xml/+server.js -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/assets/rodneylab-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/static/assets/rodneylab-logo.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/static/icon-192.png -------------------------------------------------------------------------------- /static/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/static/icon-512.png -------------------------------------------------------------------------------- /static/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/static/icon.svg -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/svelte.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rodneylab/sveltekit-seo/HEAD/vite.config.js --------------------------------------------------------------------------------