Commit Graph

186 Commits

Author SHA1 Message Date
Zach Leatherman
f0b7f1d4db Workaround for #15 2018-09-12 21:59:23 -05:00
Zach Leatherman
aead2309a3
Merge pull request #12 from nhoizey/patch-1
Set default text and background colours
2018-09-04 15:27:37 -05:00
Zach Leatherman
d0709479ab
Merge pull request #14 from denmch/patch-1
Add `reversed` attribute to posts list
2018-09-04 15:26:30 -05:00
Den McHenry
50ec3a7e5e
Add reversed attribute to posts list
Without CSS, the last post will be number 1. In browsers other than IE and Edge (where it's currently under consideration), the `reversed` attribute will match the effect of the CSS counter. I like putting the attribute first so it's clear that it's a particular kind of "ordered list: reversed."
2018-09-04 12:11:40 -07:00
Zach Leatherman
ef7783222d Adds a /tags/ to list all valid tags 2018-08-29 08:46:06 -05:00
Zach Leatherman
e3f3bc1cf2 Adds 404 page. 2018-08-23 17:50:54 -05:00
Zach Leatherman
ec2c6f5b05
Merge pull request #13 from mathiasbynens/patch-1
Simplify collection filtering using `startsWith`
2018-08-17 09:34:48 -05:00
Mathias Bynens
f17db1370c
Simplify collection filtering using startsWith 2018-08-17 14:11:32 +02:00
Zach Leatherman
47403414ad Standardize on content and not templateContent (per docs) 2018-08-01 20:39:57 -05:00
Nicolas Hoizey
253c374596
Typo
gray != grey
2018-07-16 13:19:33 +02:00
Nicolas Hoizey
d8eff83738
Set default text and background colours
Some elements in the design have text colour without background colour. Setting a global background colour should be enough with current text colours.

I wonder however if `var(--white)` is really necessary, instead of `white`.
2018-07-16 13:10:38 +02:00
Zach Leatherman
67f9c1be98 Upgrades to 0.4.0 and adds tag pages 2018-06-20 22:43:11 -05:00
Zach Leatherman
4185f33c15 Adds markdown-it-anchor plugin 2018-06-18 09:00:00 -05:00
Zach Leatherman
5115c4409c
Merge pull request #10 from nilsmielke/patch-1
_includes/base.njk —> _includes/layouts/base.njk
2018-06-13 09:43:07 -05:00
Nils Mielke
2a37a2d9d4
_includes/base.njk —> _includes/layouts/base.njk
Updated the file path of `base.njk`
2018-06-13 15:38:48 +02:00
Zach Leatherman
4d72cacd23 Use url filter for proper urls on github pages 2018-06-11 08:17:20 -05:00
Zach Leatherman
af001c7a00
Merge pull request #9 from 11ty/tag-pages
Adds tag pages example
2018-06-11 08:10:32 -05:00
Zach Leatherman
65db61c058 Update deps 2018-06-11 08:09:20 -05:00
Zach Leatherman
75243f298d Adds tag pages example 2018-06-11 08:08:15 -05:00
Zach Leatherman
db80b6e2f7
Merge pull request #8 from nsteiner/master
adding img dir to align with default eleventy.js settings and avoid error
2018-05-21 07:22:00 -05:00
Nate Steiner
3d1216a313 adding img dir to align with default eleventy.js settings and avoid error 2018-05-19 21:06:12 -04:00
Zach Leatherman
80ea652463 Use new markdown syntax highlighter b/c it’s cool, v4.0.2 2018-04-17 08:43:38 -05:00
Zach Leatherman
b732f8c6ab v4.0.1 2018-04-05 00:01:56 -05:00
Zach Leatherman
c1ed1190c8 Dependency updates 2018-04-04 23:58:56 -05:00
Zach Leatherman
1c573d0d6d Updates for 0.2.14 2018-02-17 12:36:26 -06:00
Zach Leatherman
3501428516 v4.0.0 2018-01-28 21:28:40 -06:00
Zach Leatherman
8a6401aa61 simplified npm script names 2018-01-28 21:28:10 -06:00
Zach Leatherman
df954e0532 Updated license name 2018-01-28 21:27:50 -06:00
Zach Leatherman
ac5c7edb44 Move all src JS into external plugins installed through NPM:
@11ty/eleventy-plugin-rss
@11ty/eleventy-plugin-syntaxhighlight
2018-01-28 21:27:41 -06:00
Zach Leatherman
c4b6550f4e Adds editorconfig for my own sanity. 2018-01-28 21:26:25 -06:00
Zach Leatherman
69e013641c Show off the syntax line highlights 2018-01-27 23:55:03 -06:00
Zach Leatherman
e8970adb25 Ugh, case sensitivity filename issue on Mac OS 2018-01-27 23:52:24 -06:00
Zach Leatherman
dfe49017c8 Separate files for syntax highlighters 2018-01-27 23:50:07 -06:00
Zach Leatherman
d7e2c4e525 Switch to debug for netlify deploy 2018-01-27 23:44:29 -06:00
Zach Leatherman
dceec25c46 Try the plain highlighter 2018-01-27 23:31:42 -06:00
Zach Leatherman
1d36b810a3 Fixes urls in feed. 2018-01-27 23:22:40 -06:00
Zach Leatherman
3b9f9c111e superfluous callback 2018-01-27 23:21:32 -06:00
Zach Leatherman
ec1e9df9e0 v3.0.1 2018-01-27 21:08:54 -06:00
Zach Leatherman
119dcbaf5a Fixes #6 2018-01-27 21:08:43 -06:00
Zach Leatherman
963b5d46e6 Refactors Liquid syntax highlighters to add line highlights.
Usage (ranges are space separated):

{% highlight js 1,4-6 %}
One range
Adds `highlight-line-active` to lines 1,4,5,6

{% highlight js 3-4 -1 %}
Two ranges (add/remove), remove is N/A
Adds `highlight-line-add` to lines 3,4

{% highlight js -1 3-4 %}
Two ranges (add/remove), add is N/A
Adds `highlight-line-remove` to lines 3,4

{% highlight js 3-4 5,8-10 %}
Two ranges, both are used
Adds `highlight-line-add` to lines 3-4
Adds `highlight-line-remove` to lines 5,8,9,10
2018-01-26 22:12:46 -06:00
Zach Leatherman
e408e2fe50 Emoji was bad. 2018-01-26 21:33:07 -06:00
Zach Leatherman
afedb08c02 Moves warning message to _includes/base.njk, adds a home link to posts 2018-01-25 23:36:31 -06:00
Zach Leatherman
545f203d33 Add link back to repo from demo pages. 2018-01-25 23:26:20 -06:00
Zach Leatherman
a3ffd98662 Adds Netlify stuff to the readme. 2018-01-25 21:34:34 -06:00
Zach Leatherman
950580a2a8 Netlify defaults. 2018-01-25 21:12:48 -06:00
Zach Leatherman
4212946b05 v3.0.0 2018-01-25 21:04:47 -06:00
Zach Leatherman
6dcc240219 Change default config to use pathPrefix: "/" and then use --pathprefix="/eleventy-base-blog/ for GitHub deploy command. Requires Eleventy v0.2.11 2018-01-25 21:03:57 -06:00
Zach Leatherman
c81bebd872 Move from atom.xml to feed.xml for tech agnostic-ish filename. 2018-01-25 21:02:35 -06:00
Zach Leatherman
1cde4b19bc Adds an .nvmrc for netlify deploys. 2018-01-25 14:21:01 -06:00
Zach Leatherman
8237995037 Bump to 2.0 2018-01-25 08:23:25 -06:00