HackNC / fall2016

Repository for the 2016 website
http://fall2016.hacknc.com
MIT License
9 stars 3 forks source link

Needed - Schedule module #15

Open subdavis opened 8 years ago

subdavis commented 8 years ago

This one will be a little tricker. We need a dynamic schedule page. It should be modular so that we could throw the html/css/js onto any page or drop it in any container and have it just work. Think of this less as a page and more as a module.

The schedule data will be delivered via JSON from some api service. Don't worry about this yet. Imagine you'll be working with something like this: https://gist.github.com/suBDavis/536179a2f8673842355a

neilbd commented 8 years ago

Schedule module is almost done. I have a problem with spacing each piece of data, as you can see in this pic below

image

My code for the table in Jade is `.shell.blue.schedule-shell

schedule.anchor

.container
    .subsection.row.content
        .col-lg-8.col-lg-offset-2.col-md-10.col-md-offset-1.content
            h2 Schedule
            p Our schedule for HackNC! Click ____ for our complete list of workshops
            .col-md-2
                h3 Friday
                table#friday(style="width:100%")

            .col-sm-4.col-md-2.col-md-offset-2
                h3 Saturday
                table#saturday(style="width:100%")

            .col-sm-4.col-md-2.col-md-offset-2
                h3 Sunday
                table#sunday(style="width:100%")`

Have not uploaded these changes to GitHub

neilbd commented 8 years ago

Created new changes for the schedule in neil_schedule branch. Here is a pic of what it looks like now screen shot 2016-08-08 at 9 54 32 pm

subdavis commented 8 years ago

Cool! Since we don't have a schedule, we don't want this on the homepage yet. We'll keep it for when it's ready though!

subdavis commented 8 years ago

Why is there a copy of index.html and index.css back in the gulp project? I think we refactored those.

neilbd commented 8 years ago

Yeah, was going to clean the schedule up when it's time to merge. I'm not sure why there is an index.html and index.css in Gulp, but it hasn't affected the code output. I'll clean it up though