├── .gitignore ├── README.md ├── images ├── extra-extra-logo.png └── extra-extra-footer-logo.png ├── _config.yml ├── javascripts ├── agents-pool.js ├── profile-photo.js └── modernizr.js ├── profile-fav.html ├── index.html ├── profile-photo.html ├── agents-pool.html ├── profile-landing.html ├── profile-avail.html ├── _layouts └── default.html ├── agents-gig.html ├── stylesheets └── app.css ├── params.json ├── profile-info.html └── _data └── people.json /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .DS_Store 3 | Gemfile 4 | Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # abq-filmextras 2 | Build week project to prototype a film extras marketplace 3 | -------------------------------------------------------------------------------- /images/extra-extra-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/abq-filmextras/gh-pages/images/extra-extra-logo.png -------------------------------------------------------------------------------- /images/extra-extra-footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/abq-filmextras/gh-pages/images/extra-extra-footer-logo.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | # If you're hosting your site at a Project repository on GitHub pages 2 | # (http://yourusername.github.io/repository-name) 3 | # and NOT your User repository (http://yourusername.github.io) 4 | # then add in the baseurl here, like this: "/repository-name" 5 | baseurl: "/abq-filmextras" 6 | -------------------------------------------------------------------------------- /javascripts/agents-pool.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | var $pool = $(".pool"), 3 | $cards = $pool.find(".vcard"), 4 | selectedClass = "selected"; 5 | 6 | $cards.click(function(e) { 7 | e.preventDefault(); 8 | var $card = $(this); 9 | $card.toggleClass(selectedClass); 10 | }); 11 | }); -------------------------------------------------------------------------------- /profile-fav.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 |
or at least some extra cash.
9 |