The website of the Alliance of Civic Technologists:
https://www.civictechnologists.org/
This website is built with Jekyll, which is a Ruby static site builder.
- New blog posts can be created by copying an existing post in
_posts/
and editing the filename and metadata at the top of the file. - Existing pages can be edited, in HTML and/or markdown. If you want to embed markdown within HTML tags put your content between
<div markdown="1">
and</div>
.
This site is set up as a standard Ruby project with Bundler. To get started:
- Use a Ruby version manager, like rbenv, rvm, or chruby.
- On a Mac, this can be installed with homebrew:
brew install rbenv
. - Then install the Ruby version specified in
.ruby-version
:rbenv install $(cat .ruby-version)
- On a Mac, this can be installed with homebrew:
- Run bundler to install dependencies:
bundle install
- Start the jekyll webserver:
bundle exec jekyll serve