🎧 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-12 13:25:37 -07:00
.github Create .github/dependabot.yml 2023-03-11 21:43:33 -08:00
config now page 2023-03-12 13:16:24 -07:00
src add now to nav 2023-03-12 13:24:28 -07:00
.eleventy.js add now to nav 2023-03-12 13:24:28 -07: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 add now to nav 2023-03-12 13:24:28 -07: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 cleanup + now topper 2023-03-12 11:17:56 -07: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 fixes 2023-03-11 21:41:32 -08:00
tailwind.css cleanup + now topper 2023-03-12 11:17:56 -07:00
yarn.lock cleanup + now topper 2023-03-12 11:17:56 -07: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