Ari Epstein
Ari Epstein
Picture something like this: /app/models/location.rb: class Location < ActiveRecord::Base has_many :shifts end /app/models/shift.rb class Shift < ActiveRecord::Base belongs_to :location end /app/models/assignment.rb class Assignment < ActiveRecord::Base belongs_to :shift end Then, try...
Add jekyll-last-modified-at to make it easier to time stamp built pages. Currently this requires us to do a static build locally, but it seems like a feature that would be...
In books, tables are generally accompanied by a caption. HTML specification is to have a caption tag right above the . Right now, to add a caption the whole table...