--- layout: base permalink: /index.html title: 'Eleventy Excellent' description: 'Eleventy starter using modern CSS, fluid type, fluid spacing, flexible layout and progressive enhancement.' blog: title: 'Blog' intro: "I'm showing the last 4 blog posts, but there might be more!" ---

{{ title }}

{% svg "divider/waves", null, "seperator" %}

An Eleventy starter

Built around a CSS workflow that emphasizes guiding browser styling rather than micromanaging it. It incorporates progressive enhancement, fluid type and spacing, and utilizes modern CSS features for layout. The goal is to develop frontends that provide a great experience across all devices, connection speeds, and usage contexts.

This is version 4. I keep a branch of v1, v2 and v3. I tried to document most features and methodologies.

Have fun and let me know if you find any issues or have ideas for improvements!

{{ blog.title }}

{% if blog.intro %}

{{ blog.intro }}

{% endif %}
{% set itemList = collections.allPosts %} {% asyncEach item in itemList.slice(0, 4) %} {% set headingLevel = "h3" %} {% include "partials/card-blog.njk" %} {% endeach %}