• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4251 shaares
1 / 2
Filters
23 results tagged eleventy

jwz: Now I have two problems (Mastodon PHP comments)

QRCode

Lazyweb, why doesn't this regexp match in Perl 5.32.1, 5.34.3 or 5.18.2 but does in PHP and JS: perl -le 'print 0 + ("ABCDE" =~ m/ABCF|BCDE|C(G)/);' Changing nearly any character, including the C before the G, or removing the parens, makes it match.

https://www.jwz.org/blog/2025/01/now-i-have-two-problems/
May 2, 2025 at 1:35:37 PM EDT *
mastodon php perl eleventy
FILLER

Learn Eleventy

QRCode

The best way to learn Eleventy is to build something with it.

This course was originally authored by Andy Bell and hosted at learneleventyfromscratch.com. This fork is now maintained by uncenter.

https://learn-eleventy.pages.dev/
February 11, 2025 at 9:12:09 AM EST *
eleventy blog
FILLER

Welcome to Eleventy Notes

QRCode

A simple, lightweight, and flexible note-taking template for Eleventy.

Welcome to Eleventy Notes, an opinionated template for publishing your personal notes, documentation, or even your blog! Built with Eleventy, the powerful static site generator, Eleventy Notes is packed with features you'll love.

https://eleventy-notes.sandroroth.com/
February 4, 2025 at 9:04:35 AM EST *
eleventy blog wikipedia
FILLER

11ty Slugs and Anchors | 11ty Rocks!

QRCode

Enable anchor links on content headings

There are several plugins you can add to extend markdown-it, but in this example we are adding anchor links to our content headings. We're also extending the idea from our slug update to update which characters are removed and replaced to create anchors.

https://11ty.rocks/eleventyjs/slugs-anchors/#slug-filter-extension
January 13, 2024 at 11:19:25 AM EST *
eleventy accessibility blog
FILLER

Using shiki with 11ty

QRCode

Since my last post about shiki was really long and described a really deep way on how to use and modify shiki, this is the complete opposite. This shows just short and simple how to use shiki in your eleventy (11ty) project.

https://www.hoeser.dev/blog/2023-02-07-eleventy-shiki-simple/
December 5, 2023 at 11:05:30 AM EST *
eleventy nodejs syntax
FILLER

Lesson 18-20: Transform gulp pipeline to use ESM (to fix issue with `gulp-imagemin`) · Issue #40 · Andy-set-studio/learneleventyfromscratch.com · GitHub

QRCode

gulp-imagemin in its latest version is now ESM only (see also #24 ). In my personal project I have changed the gulp pipeline to use ESM and was able to update all dependencies to their latest versions. I want to leave my code here for an...

https://github.com/Andy-set-studio/learneleventyfromscratch.com/issues/40
December 4, 2023 at 9:57:31 AM EST *
gulp eleventy
FILLER

Eleventy plugin for generating social images (using SVG) | Notes | Kumar Abhishek

QRCode

How I created an eleventy plugin to automatically generate social-images for your website and blog posts.

https://abhi.page/notes/11ty-plugin-generate-social-images/
October 24, 2023 at 2:04:26 PM EDT *
eleventy
FILLER

Possible to use VS Code debugger? · Issue #331 · 11ty/eleventy · GitHub

QRCode

What I want to do is console.log variables when I create shortcodes. Template fills up the console too much, so it's hard to debug. Wondering whether it's possible to debug with VS code built in debugger. If yes, what's the configuration...

https://github.com/11ty/eleventy/issues/331#issuecomment-1559069278
September 28, 2023 at 9:54:51 AM EDT *
eleventy nodejs vscode
FILLER

Compiling CSS with Eleventy

QRCode

A list of different options for compiling CSS with Eleventy

David Darnes came at me with a classic RTFM. Turns out Eleventy has a page on the docs for doing exactly this. This method uses Sass and requires a little bit of config. One thing to note is by default this will output all .scss file to the built site, so I added a check to see if the file is named app and if it's not, then skip it. Alternatively you can put your files in an _includes directory and these won't be output (thanks Dave). style: 'compressed' will minimise the CSS.

Stephanie Eckles has an Eleventy plugin for using LightningCSS which handles all the configuration and as a bonus ignores any files that start with _ so they won't get copied to the build folder.

https://rknight.me/compiling-css-with-eleventy/
September 13, 2023 at 11:35:14 AM EDT *
css eleventy sass
FILLER

11ty Rocks!

QRCode
https://11ty.rocks/
May 8, 2023 at 7:22:55 PM EDT *
eleventy
FILLER

Sympolymathesy, by Chris Krycho

QRCode

Learning in public: on theology, technology, ethics, software, politics, art, and more.

https://v5.chriskrycho.com/
May 8, 2023 at 7:21:32 PM EDT *
eleventy blog
FILLER

Add HTML classes to 11ty markdown content - DEV Community

QRCode

11ty comes with some useful plugins for markdown manipulation, one of these is... Tagged with 11ty, eleventy.

https://dev.to/giulia_chiola/add-html-classes-to-11ty-markdown-content-18ic
May 8, 2023 at 7:13:34 PM EDT *
eleventy markdown
FILLER

GitHub - josephdyer/skeleventy: A skeleton boilerplate built with Eleventy.

QRCode

A skeleton boilerplate built with Eleventy. Contribute to josephdyer/skeleventy development by creating an account on GitHub.

https://github.com/josephdyer/skeleventy
April 20, 2023 at 11:37:19 AM EDT *
eleventy blog templates
FILLER

Micro @eleven_ty tip:

QRCode

We can use the Nunjucks "dump" filter to call "JSON.stringify" on an object and "dump" the result(s) into our template.

For example, we can render information about our current page with the Eleventy supplied "page" variable.

https://twitter.com/Eduardo__Uribe/status/1519088476288811009
May 17, 2022 at 10:10:12 AM EDT *
eleventy
FILLER

Minimum Static Site Setup with Sass | Stephanie Eckles

QRCode

If you don't need any templating languages and just need to get a simple site built plus Sass, use this as the contents of a fresh package.json:

npm start - copies src files to public and starts Browsersync server at localhost:3000
npm run build - copies files to public and autoprefixes/minifies css

https://thinkdobecreate.com/articles/minimum-static-site-sass-setup/
February 24, 2022 at 1:44:31 PM EST *
sass npm eleventy
FILLER

David East - 11ty tips I wish I knew from the start

QRCode
  1. Get comfortable with 11ty’s configuration
  2. Set a source folder and an output folder
  3. Configure markdown for Nunjucks syntax
  4. Supercharge markdown with containers and classes
  5. Embrace the Data Cascade
  6. Async shortcodes are for dynamic data fetching
  7. Use Eleventy Navigation
https://davidea.st/articles/11ty-tips-i-wish-i-knew-from-the-start/
February 10, 2022 at 1:51:05 PM EST *
eleventy
FILLER

Javascript Data Files and You by Bryan Robinson [ Jamstack Toronto ] - YouTube

QRCode

A talk by Bryan Robinson during 11ties: a series of 11 min lightning talks on 11ty, recorded on 11/11, 2020 -- for Jamstack TORONTO.

https://www.youtube.com/watch?v=CL8LZaa_Qlk
February 8, 2022 at 1:44:52 PM EST *
eleventy blog
FILLER

A Complete Guide to Building a Blog with Eleventy

QRCode

Let's begin by first describing exactly what we're building. I think most developers have a good idea of what a blog is, but every blog is different. For this guide, I will support the following features:

  • A home page that displays the last ten blog articles, newest on top. For each blog post, we display the title, date published, and an excerpt of the post.
  • A page that displays the blog post. This will have the title, published date, a list of categories assigned to the post, and the contents of the post itself.
  • Every blog post will have one or more categories assigned to it. Each category will have its own index page with a list of blog posts assigned to it. Each item in the list will have the title and date of the post, nothing more.
  • An author page, basically, who is doing the writing?
  • An archives page that lists every single blog post. This will use Eleventy's pagination system.
  • A set of category archive pages. The same idea as the main archives page, but unique per category.
  • A RSS feed.
https://cfjedimaster.github.io/eleventy-blog-guide/guide.html
January 21, 2022 at 9:48:01 AM EST *
eleventy blog
FILLER

Tutorials—Eleventy, a simpler static site generator.

QRCode

Tutorials—Eleventy, a simpler static site generator.

https://www.11ty.dev/docs/tutorials/
December 30, 2021 at 10:20:35 AM EST *
eleventy
FILLER

Build an 11ty Site in 3 Minutes

QRCode

In just 3 minutes, get an overview of the essential features available when building a site with 11ty.

https://www.youtube.com/watch?v=BKdQEXqfFA0
October 26, 2021 at 10:51:48 AM EDT *
blog eleventy
FILLER
1 / 2
Shaarli · The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community · Documentation
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community