🎧 The source for my personal site. Built using 11ty (and other tools): https://coryd.dev/colophon
This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2023-03-11 21:27:11 -08:00
config meta updates 2023-03-11 18:03:54 -08:00
src posts directory 2023-03-11 20:22:08 -08:00
.eleventy.js support md footnotes 2023-03-11 21:27:11 -08:00
.eslintignore Initial commit 2023-03-11 12:16:06 -08:00
.eslintrc.js initial theming dev 2023-03-11 17:12:34 -08:00
.eslintrc.json Initial commit 2023-03-11 12:16:06 -08:00
.gitignore initial theming dev 2023-03-11 17:12:34 -08:00
.node-version Initial commit 2023-03-11 12:16:06 -08:00
create Initial commit 2023-03-11 12:16:06 -08:00
package.json support md footnotes 2023-03-11 21:27:11 -08:00
postcss.config.js Initial commit 2023-03-11 12:16:06 -08:00
prettier.config.js initial theming dev 2023-03-11 17:12:34 -08:00
README.md initial theming dev 2023-03-11 17:12:34 -08:00
robots.txt Initial commit 2023-03-11 12:16:06 -08:00
tailwind.config.js styling + rss 2023-03-11 19:32:11 -08:00
tailwind.css import posts, fix styles 2023-03-11 20:20:57 -08:00
yarn.lock support md footnotes 2023-03-11 21:27:11 -08:00

Blog starter

Netlify Status

View the live demo here, hosted on Netlify

Aims

A blog that still runs without javascript. Hence, no bundlers.

Features

  • Static Site Gen - Eleventy

  • Tailwind CSS v2.0 / Tailwind Typography / Dark Mode

  • Create excerpts using the <!-- excerpt -->

  • Custom ReadTime filter

  • 404 page

  • Tags page to view posts related to tag

    • Use of a tagList collection defined in .eleventy.js
    • /tags - show all available tags (excluding all and posts) as buttons (tags.md)
    • /tags/tag-name - shows all posts related to that tag (tagList.md)
  • Sitemap and Robots.txt

    • Change site url in _data/site.json
  • Shortcode to handle images

    • Add image under src/assets/img/posts and use the asset_img short code
    • {% asset_img 'filename' 'alt_text' %} eg. {% asset_img 'mailbox.jpg' 'mailbox' %}
  • Draft posts using the published frontmatter
  • Posts pagination in index.html
    • change the size frontmatter variable
  • ESLint
  • Bash script to create new post (based on YYYY and MM)
$ ./create new blog post
Created new post at src/posts/2021/01/new-blog-post.md

Running locally

Create your blogpost under src/posts. I like to have mine sorted by YY/MM.

Navigate to localhost:8080 after starting the server.

npm start

Deployment

On Netlify / Surge / Firebase hosting / etc hosting providers

Build Command: npm run build

Output folder: _site