brew install imagemagick netlify
bundle install
netlify dev
- Simple
- Beautiful
- Authenntic
- Content-first
- Danny
- Express himself freely and without constraint.
- Have fun. With writing, design and code.
- Connect with people he can help, or who can help him.
- Interested reader
- Read Danny's words in peace.
- (Perhaps) be notified when Danny writes some new words.
- Person checking Danny out
- Find out if Danny is the right person to help them.
- Contact him.
- I want a simpler, more technology-agnostic website.
- I want to write on my own website, not on Medium.
- Represent myself more authentically.
- Simplify my own mental model for who I am and what I do, as expressed through this site.
- Make things more obvious and useful to readers.
- Put my writing at the front, and make it beautiful.
- Provide somewhere for folks to find out about my work, and how I might be able help them.
- As few dependencies as possible (both build-time and run-time).
- Use defaults wherever possible.
- Write as little code as possible.
- Do not over-abstract. Avoid fallbacks, polyfills and hacks.
- Bake accessibility in.
- The code lives on Github.
- Deployed to Netlify.
- Quick access via Forestry.io.
- Database lives on Airtable and is accessed via Netlify lambda functions
This documentation is mainly for my own use. It;s too easy to forget the conventions if I don't touch this for a while.
Use Jekyll's _drafts
folder. You can write in either markdown or HTML, though markdown is preferred. When a post is ready to publish, update the filename with the publication date and move it to _posts
. No frontmatter is required, though it's recommended you always supply a title
.
To keep posts looking nice, stick to the following rules:
- Always begin with a longish paragraph, and avoid formatting in the first line where possible.
- Always end with a summary paragraph.
- Wrap all acronyms in
<abbr>
tags - providing a title is optional. - Always provide alt text for images.
Images should be named in the form YYY-MM-DD-title.ext
and added to _uploads
. Do not use subfolders. There is a github app to optimize the images via PR.
The following layout classes are provided for use with images, though they can be used with any block content:
Tag | Desscription |
---|---|
{:.full-bleed} |
The image will bleed out to the edges of the screen |
{:.left-bleed} |
The image will bleed out to the left |
{:.right-bleed} |
The image will bleed out to the right. |
{:.border} |
The image will be rendered with a border and internal pading. Good for images with a background similar to the site background colour. |
The bleed classes should always be applied to a paragraph wrapping the image, like this:
{:.full-bleed}

The bordr can be applied to either the wrapper or the element itself. To combine a bleed and border, apply the border to the image:
{:.full-bleed}
{:.border}
Prefer gists for longer code samples, and always specify a language when writing fenced code blocks.
Callouts can be added like this
{:.callout}
This is a callout
Create a new markdown file in /posts
with the publication date in the file name. Add three fields to the frontmatter: title, rediirect_to and platform.
title: Business Process and Tooling
redirect_to: 'https://medium.com/@dannysmith/business-process-tooling-56f1e3341d21'
platform: medium
The post will be rendered as normal in lists but will redirect to the URL provided. The platform
field us used to style external links differently. Any single-word string is valid but medium
, devto
recieve special styling.
Create a new page in _pages
. Any pages in this folder will be mapped to the root of the site.
You can create redirects in the same way as for posts above. To redirect https://danny.is/google to https://google.com, greate a file named google.md
in _pages
with one line of frontmatter: redirect_to: https://google.com
.
If you are creating a page for the site, prefer HTML over markdown in most cases. If we're creating a "fishing" page...
- Create
fishing.html
in_pages
. - Add a title and
body-class: page-fishing
to the frontmatter. Thebody-class
will be applied as a class to the<body>
element so we can style the page. - Create a
page-fishing.scss
file in_sass
and include it inmain.scss
. - Write your page-specific styles nested in a
.page-fishing
selector.
If you apply a body-class
of no-drop-cap
to an essay, a drop cap won't be used. This is useful for essays with very short first paragraphs.
Danny Smith