diff --git a/src/pages/about.md b/src/pages/about.md
index dd69c0b..549f336 100644
--- a/src/pages/about.md
+++ b/src/pages/about.md
@@ -3,7 +3,6 @@ title: About
permalink: /about/index.html
description: 'Eleventy Excellent is inspired bythe companion website of Andy Bell’s talk "Be the browser’s mentor, not its micromanager".'
layout: page
-youtube: true
---
This starter uses modern CSS, fluid type & space, flexible Layouts and Progressive Enhancement, wrapped in a basic template.
@@ -20,4 +19,5 @@ The aim is to spread the idea and use of this _excellent_ workflow. To work with
## Watch the talk
-{% youtube 'JqnMI1AXl6w', 'Andy Bell – Be the browser’s mentor, not its micromanager' %}
+
+
diff --git a/src/pages/blog.md b/src/pages/blog.md
index cbd73c1..f1b6d89 100644
--- a/src/pages/blog.md
+++ b/src/pages/blog.md
@@ -3,7 +3,7 @@ title: Blog
description: 'All blog posts can be found here'
layout: blog
pagination:
- data: collections.posts
+ data: collections.allPosts
size: 6
permalink: 'blog/{% if pagination.pageNumber >=1 %}page-{{ pagination.pageNumber + 1 }}/{% endif %}index.html'
---
diff --git a/src/pages/built-with.njk b/src/pages/built-with.njk
index 9bac945..12623f0 100644
--- a/src/pages/built-with.njk
+++ b/src/pages/built-with.njk
@@ -8,9 +8,11 @@ widths: [400, 520]
---
- A list of sites based on / built with Eleventy Excellent. This uses Eleventy's
- screenshot API . New
- screenshots are fetched in development only.
+ Honestly, I made this starter for myself, based on how I want to start a project and how I like to organize
+ everything. I am delighted that so many of you find it useful too! This is a list of sites based on / built
+ with Eleventy Excellent. This uses Eleventy's
+ screenshot API . New screenshots are fetched
+ in development only.
@@ -20,29 +22,33 @@ widths: [400, 520]
rel="noopener"
>pull request
- and add it to the list! You find the data in src/_data/builtwith.json (Not
- related to "Build with Jason" 🥁).
+ and add it to the list! Add your data in src/_data/builtwith.json, then run
+ npm run screenshots to add or update the screenshots.
-
- {% include 'svg/divider-soft-top.svg' %}
-
+
+ {% svg "divider/soft-top", null, "seperator" %}
+
+
Based on, or built with Eleventy Excellent:
-
- {% include 'svg/divider-soft-bottom.svg' %}
+ {% svg "divider/soft-bottom", null, "seperator" %}
diff --git a/src/pages/get-started.md b/src/pages/get-started.md
index ca70df0..5c80675 100644
--- a/src/pages/get-started.md
+++ b/src/pages/get-started.md
@@ -3,29 +3,20 @@ title: Get started
permalink: /get-started/index.html
description: 'You can use this starter as a template for your blog and you are ready to go! But there are some adjustments you have to make.'
layout: page
-preloads:
- href: '/assets/fonts/robotomono/robotomono-regular.woff2'
- as: 'font'
- type: 'font/woff2'
- crossorigin: true
---
You can use this starter as a template for your blog and you are ready to go! But there are some **adjustments you have to make**.
- `src/_data/meta.js` - sets different "hard coded" text values all over the template, you can change the language, etc.
- edit your personal details and social media in `src/_data/personal.yaml`.
-- Open `src/assets/css/blocks/external-link.css`. Replace "eleventy-excellent.netlify.app" with your own domain. This is about the external link indicators, they are matched with your domain. If you don't want to use external link indicators, feel free to delete the whole style rule. You can also add the class `no-indicator` to any anchor element you want to except from this rule.
+- Open `src/assets/css/global/blocks/external-link.css`. Replace "eleventy-excellent.netlify.app" with your own domain. This is about the external link indicators, they are matched with your domain. If you don't want to use external link indicators, feel free to delete the whole style rule. You can also add the class `no-indicator` to any anchor element you want to except from this rule.
If you are working with **VS Code** I recommend installing the "Tailwind CSS IntelliSense" addon, as it works also for our custom utility classes. That said, you will find that Tailwind CSS does not work as you might expect. I explain this in [one of the blog posts](/blog/what-is-tailwind-css-doing-here/).
-The [blog posts](/blog/page-0/) also explain / show some features that aren't covered here.
+The [blog posts](/blog/) also explain / show some features that aren't covered here.
## "Docs" lol
-
{% set itemList = collections.docs %}
-
-
-
-{% include 'components/details.njk' %}
+{% include 'partials/details.njk' %}
\ No newline at end of file
diff --git a/src/pages/index.md b/src/pages/index.md
index 93750f8..2b10368 100644
--- a/src/pages/index.md
+++ b/src/pages/index.md
@@ -16,7 +16,5 @@ The aim is to create frontends that look good to everyone, regardless of device,
I have tried to [document a few things](/get-started/).
-I keep a [branch of v1](https://github.com/madrilene/eleventy-excellent/tree/v1) because I have changed a lot of things.
-At the same time, I'm already [working on v3](https://github.com/madrilene/eleventy-excellent/tree/v3), where I'm switching to ESM and building components with webC where it makes sense.
-
**Have fun** and let me know if you find any issues or have ideas for improvements!
+
diff --git a/src/pages/legal.md b/src/pages/legal.md
index 86853f3..bc97310 100644
--- a/src/pages/legal.md
+++ b/src/pages/legal.md
@@ -1,6 +1,6 @@
---
title: Legal notice
-seo:
+discover:
title: Legal notice
permalink: /imprint/index.html
description: Imprint infos
diff --git a/src/pages/privacy.md b/src/pages/privacy.md
index cd67084..a4c32ae 100644
--- a/src/pages/privacy.md
+++ b/src/pages/privacy.md
@@ -1,6 +1,6 @@
---
title: Privacy Policy
-seo:
+discover:
title: Privacy Policy
permalink: /privacy/index.html
description: I respect the EU General Data Protection Regulation (GDPR). This policy document explains how I collect and handle any information you provide to me.
diff --git a/src/pages/styleguide.njk b/src/pages/styleguide.njk
index 344cb59..d4c4e6d 100644
--- a/src/pages/styleguide.njk
+++ b/src/pages/styleguide.njk
@@ -86,9 +86,7 @@ customGradients:
{%- for font in designTokens.fonts.items -%}
-
-
- {{ font.name }}
-
+ {{ font.name }}
{{ font.description }}
Font Families: {{ font.value | join(', ') }}
var(--font-{{ font.name | slugify }})
@@ -103,9 +101,7 @@ customGradients:
{{ designTokens.textSizes.description }}. Fluid type and space scales were
- generated with Utopia.
+ generated with Utopia.
@@ -121,9 +117,7 @@ customGradients:
|
-
- {{ size.name }}
-
+ {{ size.name }}
|
{%- endfor -%}