Minor style change on foursquare venue detail, and removed old images

pull/2/head
Sahat Yalkabov 2013-12-04 22:11:09 -05:00
parent ffed158a4e
commit 6794f64a03
2 changed files with 3 additions and 0 deletions

1
app.js
View File

@ -67,6 +67,7 @@ app.get('/auth/facebook/callback', passport.authenticate('facebook', { successRe
app.get('/auth/github', passport.authenticate('github'));
app.get('/auth/github/callback', passport.authenticate('github', { failureRedirect: '/login' }), function(req, res) { res.redirect('/'); });
app.get('/auth/google', passport.authenticate('google', { scope: 'profile email' }));
app.get('/auth/google/callback', passport.authenticate('google', { successRedirect: '/', failureRedirect: '/login' }));

View File

@ -51,7 +51,9 @@ block content
h3.lead.text-primary Venue Detail
p
span.label.label-primary #{venueDetail.venue.name} (#{venueDetail.venue.categories[0].shortName})
p
span.label.label-success #{venueDetail.venue.location.address}, #{venueDetail.venue.location.city}, #{venueDetail.venue.location.state}
p
span.label.label-warning #{venueDetail.venue.likes.count} likes, #{venueDetail.venue.rating} rating
img.pull-left(src='#{venueDetail.venue.photos.groups[0].items[0].prefix}150x150#{venueDetail.venue.photos.groups[0].items[0].suffix}')