Skip to content
This repository has been archived by the owner on Feb 6, 2019. It is now read-only.

Latest commit

 

History

History
26 lines (18 loc) · 962 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 962 Bytes

ubacm-pelican

UB ACM Pelican build with content and pages.

Description

This repo contains the raw files for building the UB ACM website. When modifying, we are primarily concerned with content and theme.

content consists of Markdown files (with some HTML for hacks) that Pelican uses to render pages. When adding new pages (or blog posts when we support that), add that here.

theme is a modification of the Bootstrap Jumbotron example page. Any changes to the actual site templating live here.

Building and Running

First time:

  1. Clone the repo down.
  2. Create a virtualenv for the project: virtualenv --distribute env.
  3. Start the virtualenv: source env/bin/activate.
  4. Add the dependencies: pip install -R requirements.txt.

Actually building and running:

  1. fab reserve, which is a combination of fab build and fab serve.
  2. Go to http://localhost:8000 in your browser of choice.