This repository serves as APSA's Annual Meeting website. It is to be copied each year in order to start afresh and create a new one for the upcoming meeting.
- Functionality
- Website Configuration
- File Description
- Agenda
- Domain Name Structure
- Managing Website Images
- Future Meeting Website Deployment
The main function of the website is to display basic information about the meeting. The majority of this information involves the meeting's agenda with many pieces of this information display in a different format around the site. As a result, the meeting's events have been converted to a JSON object, allowing components of the website using the agenda to be created automagically.
- Goal: display clean URLs in browser address bar without needing file endings (e.g. *.html)
- Example: meeting.physicianscientists.org/panels/
- Design
- Create a single folder per page named according to the webpages content
- Place a single file named
index.html
in each folder - Link to webpages by explicitly omitting
index.html
as the browser will automatically display this file when the folder is referenced
- Goal: maintain a single folder for locating all CSS files
- Location:
/bootstrap/css/*
- Design
- Store all CSS files in the above location
- Keep bootstrap css separated from other CSS
- Place all custom CSS in
carousel.css
- Minimization: minimize all CSS files and reference the minimized files
*.min.css
- Goal: maintain a single folder for locating all JS files
- Location:
/bootstrap/js/*
- Design
- Store all JS files in the above location
- Keep bootstrap JS separated from other JS
- Place all custom CSS in
carousel.css
- Minimization: minimize all CSS files and reference the minimized files
*.min.css
- Naming Convention
- Place name of page to be affected by JS at the beginning of the file name
- Ending should describe contents; loose patterns described below
- UI: adds UI interaction based on user behavior
- Creator: constructs page from agenda JSON object
- Goal: maintain all images in a single folder while organizing them into subdirectories based on concepts (e.g. keynotes, panelists, etc.)
- Location:
/images/*
- Design
/images/keynotes
: speaker event images/images/panels
: panel event images/images/luncheon_programs
: luncheon program images/images/sponsors
: sponsor organization images and logos/images/originals
: all original keynote and panelist images
File Name | File Type | Description |
---|---|---|
/index.html |
html |
|
/agenda/index.html |
html |
|
/faq/index.html |
html |
|
/luncheon/index.html |
html |
|
/meeting/index.html |
html |
|
/panels/index.html |
html |
|
/prospectus/index.html |
html |
|
/speakers/index.html |
html |
|
/sponsors/index.html |
html |
|
/submissions/index.html |
html |
|
/bootstrap/css/carousel.css |
css |
|
/bootstrap/js/agenda_creator.js |
js |
|
/bootstrap/js/agenda_ui.js |
js |
|
/bootstrap/js/homepage_carousel.js |
js |
|
/bootstrap/js/js_id_creator.js |
js |
|
/bootstrap/js/panel_creator.js |
js |
|
/bootstrap/js/speaker_creator.js |
js |
|
The agenda is a major component of the website, has its structure stored in JSON, and impacts the content of many of the website's pages. As previously mentioned, the JSON object controlling the schedule can be found in two files:
meeting_info/meeting_info.json
meeting_info/meeting_info.json.default
The meeting_info/meeting_info.json.default
serves as a template for the JSONified agenda events, whereas the meeting_info/meeting_info.json
is the real file used by the website.
The agenda consists of four main events that can be slightly modified through the JSON described below. These events are normal, session, keynote, and panel.
A basic event that only possesses a title, date, time, and optional description. This event is only displayed on the agenda page. Descriptions should be minimal and used sparingly. This event can easily be used to indicate breaks.
This is an artificial event that merely indicates the start of a session of events rather than describing a single event. It can also be used to indicate session moderator switches.
A complex event that holds event information for keynote speaker events. The agenda adapts to the number of speakers, displaying events consisting of one speaker differently than events with two or more. Additionally, many pieces of information for this event are optional. The final event on the agenda will adapt to what is provided.
All of the speakers across all events are individually listed in a carousel on the homepage and the speaker page (/speakers/index.html
) highlighting them. However, images are required for display in the homepage carousel, and both an image and a bio are required for display on the speaker page.
Another complex event that displays a panel and all associated participants. Similar to the keynote, some information components are optional. The display will adapt if they are missing.
The panels and their participants are also displayed in a separate page (/panels/index.html
) highlighting the event.
An example of the JSON structure can be found in meeting_info/meeting_info.json
. It's structure is broken down into the 4 key event types: normal, session, keynote, and panel. All events must have a type
property indicating the type of event in order for the event to display.
This event is a standard event with just a title, time, location, and optional description. The JSON properties available are listed below:
type
: normaltitle
: name of the event in raw textdate
: date of the event (e.g. April 21, 2019)time
: time of the event (e.g. 2:00 - 3:00 pm)location
: location of the event (defaults to "TBA" if ommitted)description
(optional): creates a collapsible description of the event on the agendaapsa
: boolean indicating if the event is an APSA-sponsored event
This event is an artificial event that marks the beginning of sessions and moderator changes.
type
: sessiontitle
: name of the event in raw textdate
: date of the event (e.g. April 21, 2019)time
: time of the event (e.g. 2:00 - 3:00 pm)location
: location of the event (defaults to "TBA" if ommitted)apsa
: boolean indicating if the event is an APSA-sponsored event
This event is for any event that has a speaker except panels (see below). It will adapt to one or many speakers.
type
: keynoteaward
(optional): extra raw text title for award eventstitle
: name of the event in raw textspeaker
: array of objects (can have multiple) (properties below)speaker_type
: raw text placed in front of speaker name on agenda (defaults to Invited Speaker)title
(optional): speaker's talk title in raw textname
: speaker's name and degree(s)affiliation
: speaker's affililiation (keep it brief)image
(optional): filename of speaker's image located in images/keynotes, displayed on /speakers/index.html webpage (just the name, path is hard-coded)agenda_image
(optional): filename of speaker's image located in images/keynotes, displayed on /agenda/index.html webpage (just the name, path is hard-coded)lab_url
(optional): URL of speaker's lab or university pagebio
(optional): free text speaker's bio; paragraphs can be created by wrapping them in<p></p>
HTML tagstime
(optional): time for specific speaker in a multi-speaker event
date
: date of the event (e.g. April 21, 2019)time
: time of the event (e.g. 2:00 - 3:00 pm)location
: location of the event (defaults to "TBA" if ommitted)apsa
: boolean indicating if the event is an APSA-sponsored event
type
: panelaward
(optional): extra raw text title for award eventstitle
: name of the event in raw textparticipant
: array of objects (can have multiple) (properties below)moderator
: boolean indicating whether participant is moderatorname
: participant's name and degree(s)affiliation
: speaker's affiliation (keep it brief)image
: filename of participant's image located in images/panels, displayed on /panels/index.html webpageagenda_image
: filename of speaker's image located in images/panels, displayed on /agenda/index.html webpagebio
: free text speaker's bio; paragraphs can be created by wrapping them in<p></p>
HTML tags
date
: date of the event (e.g. April 21, 2019)time
: time of the event (e.g. 2:00 - 3:00 pm)location
: location of the event (defaults to "TBA" if ommitted)description
(optional): creates a collapsible description of the event on the agendaapsa
: boolean indicating if the event is an APSA-sponsored event
Each event type affects a different number of pages. Some are limited to only the agenda, while others are responsible for a large portion of the website's content. The event types are list below along with the webpages that they modify and what the effect is.
/agenda/index.html
: creates a normal event
/agenda/index.html
: creates a session change event
/agenda/index.html
: creates a keynote event hosting a speaker/index.html
: all speakers with images are shown in the homepage carousel/speakers/index.html
: all speakers with images AND bios are shown in in the speakers page highlighting each one
/agenda/index.html
: creates a normal event/panels/index.html
: all participants with images AND bios are shown in in the panels page attached to the appropriate panel
organization-name
.github.io/repository-name
- Example: apsa-meeting.github.io/2016
- Note:
gh.physicianscientists.org
also points toapsa-meeting.github.io
; therefore,gh.physicianscientists.org/2016
will work as well
repository-name
.organization-name
.github.io.- Example: 2016.apsa-meeting.github.io.
- Can ONLY be used as a CNAME in a DNS record and will not pull up the correct page when typed directly into a browser’s address bar or when used in an html <a> tag
- For redirect to work, the repository requires a CNAME file in it containing the domain name that will be used in the DNS record to point to the repository
Briefly: Images are one of the biggest reasons for slow webpage load times. While not following this section will not break the website, this section is not optional and is vital to maintaining rapid load times.
- Use JPEG (*.jpg) image format
- Shrink images to appropriate size
- Agenda
- Speakers: height: auto; width: 80px
- Panelists: height: 75px; width: 75px (crop as necessary)
- Separate pages (panels/index.html and speakers/index.html)
- Speakers and Panelists: height: 200px; width: auto
- Agenda
- Use image quality score of 75 - 85%
- Losslessly compress image (see “Suggested Applications” section) (follow Google’s suggestions if using ImageMagick)
- Use PageSpeed Insights for any further compression (allows download of optimized images)
- Go to https://github.com/APSA-meeting
- Create a new repository named for the meeting year (“2017”, “2018”, etc.)
- After clicking “Create repository”, select “Import code” on the next screen
- Select the previous year’s repository to create a copy to work with
- Edit website pages based on “Page Content” section above
Connecting http://meeting.physicianscientists.org/ to the new repository
- Delete the CNAME file in the repository for the previous year’s annual meeting website
- In “Settings” for new repository, put “meeting.physicianscientists.org” in “Custom Domain” section
- Login to APSA’s account at https://www.cloudflare.com/
- Change the CNAME of “meeting.physicianscientists.org” to “
repository-name
.apsa-meeting.github.io.” (i.e. 2017.apsa-meeting.github.io.) - Add github link to old repository (i.e. gh.physicianscientists.org/2016) to “Past Events” page on APSA’s main website as archive