18F / api-program

A complete agency API program.
Creative Commons Zero v1.0 Universal
12 stars 9 forks source link

Add simple gh-pages template #18

Closed dhcole closed 9 years ago

dhcole commented 9 years ago

I was looking into a really simple Jekyll template to pull together markdown repositories like this. Here's a first pass at it. Has an index page that lists the markdown pages and shows them with a link on the title to edit on Github.

Thought it may be worth trying here.

See it in action here: http://dhcole.com/API-Program/

If you like this idea, I'd suggest merging this into gh-pages and ditching the master branch.

screen shot 2015-04-02 at 5 36 16 pm

dhcole commented 9 years ago

Also, added yaml headers to the markdown files with the following shell script:

for f in *.md; do
  echo -e "---\n---\n" | cat - $f > temp && mv temp $f;
done
gbinal commented 9 years ago

Thanks for spurring this. I went with what seems to be the 18F microsite template - http://18f.github.io/api-program/.

dhcole commented 9 years ago

:+1: