Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brianyu28/roundtable
Roundtable feature design for The Harvard Crimson, designed for Commencement 2017
https://github.com/brianyu28/roundtable
journalism
Last synced: 4 days ago
JSON representation
Roundtable feature design for The Harvard Crimson, designed for Commencement 2017
- Host: GitHub
- URL: https://github.com/brianyu28/roundtable
- Owner: brianyu28
- Created: 2017-05-13T04:35:12.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-16T15:10:35.000Z (almost 8 years ago)
- Last Synced: 2024-12-26T07:10:36.052Z (about 2 months ago)
- Topics: journalism
- Language: JavaScript
- Homepage:
- Size: 259 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Roundtable
Roundtable is a design template created by The Harvard Crimson
for Commencement 2017.## Configuration
### `config.pde`
All configuration for Roundtable is done in the `config.pde` file.
The string `roundtableTitle` should be updated to reflect the name of the
design. The data that will populate the roundtable must be stored in the
`data` array, which consists of dictionaries with the following properties:- `name` : the individual's name
- `image` : the name of a corresponding image file which must be in the `img/` directory
- `description` : a text description of the individual### Embed as iframe
Roundtable can be embedded as an iframe using the syntax:
```
```
### Sizing and Coloring
Sizing and coloring constraints are defined in `constants.pde`.
The standard constraints include:- `bgColor: white`
- `textColor: black`
- `enforcedWidth: 600`
- `labelFont:` size `10`
- `descriptionFont:` size `11`For an alternative larger-feature layout, you may also wish to change these to:
- `bgColor: crimson`
- `textColor: white`
- `enforcedWidth: 1000`
- `labelFont:` size `12`
- `descriptionFont:` size `14`