-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve page styling, add membership count via Meetup API, cleanup js
- Loading branch information
Showing
18 changed files
with
43 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
article { | ||
max-width: 760px; | ||
} | ||
article p { | ||
font-weight: 400; | ||
font-size: 19px; | ||
line-height: 1.6; | ||
font-family: "Georgia", serif; | ||
margin-bottom: 20px; | ||
} | ||
h2 { | ||
margin-top: 30px; | ||
} | ||
h3 { | ||
margin-top: 30px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,6 @@ | |
"header", | ||
"front", | ||
"footer", | ||
"sponsoring" | ||
"sponsoring", | ||
"pages" | ||
; |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
--- | ||
layout: default | ||
scripts: | ||
- "https://code.jquery.com/jquery-3.1.1.min.js" | ||
- "/js/main.js" | ||
--- | ||
<div class="container"> | ||
<div class="row u-marginBottom"> | ||
|
@@ -9,7 +12,7 @@ | |
<div class="col-md-8 col-md-pull-4"> | ||
<p class="introText"> | ||
The <span class="introText--title"><a class="u-fontMono" href="http://www.meetup.com/Barcelona-Free-Software/">Barcelona Free Software</a></span> meetup | ||
is an open space for coders and users who love free software that has +1000 members. | ||
is an open space for coders and users who love free software with <span class="js-members">—</span> members. | ||
</p> | ||
<p class="introText">Come to our next meeting to discover new projects and have a drink.</p> | ||
<p class="introText">Anything to say? Please, <a href="mailto:[email protected]">contact us</a> directly.</p> | ||
|
@@ -18,15 +21,15 @@ | |
<div class="row u-marginBottom u-alignCenter"> | ||
<h2 class="u-fontMono">Past meetups</h2> | ||
<div class="col-md-4"> | ||
<img class="u-imgSameWidth" src="images/meetup.jpg" data-action="zoom"> | ||
<img class="u-imgSameWidth" src="images/meetup.jpg"> | ||
<h3 class="meetupTitle"><a href="http://www.meetup.com/Barcelona-Free-Software/events/222268760/">MySQL in 2015</a></h3> | ||
</div> | ||
<div class="col-md-4"> | ||
<img class="u-imgSameWidth" src="images/tor.jpg" data-action="zoom"> | ||
<img class="u-imgSameWidth" src="images/tor.jpg"> | ||
<h3 class="meetupTitle"><a href="http://www.meetup.com/Barcelona-Free-Software/events/221128295/">Tor for first-world European users</a></h3> | ||
</div> | ||
<div class="col-md-4"> | ||
<img class="u-imgSameWidth" src="images/ubuntu.jpg" data-action="zoom"> | ||
<img class="u-imgSameWidth" src="images/ubuntu.jpg"> | ||
<h3 class="meetupTitle"><a href="http://www.meetup.com/Barcelona-Free-Software/events/221967219/">Ubuntu Phone Overview</a></h3> | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
$(document).ready(function() { | ||
$.getJSON("https://api.meetup.com/Barcelona-free-software?photo-host=public&sig_id=103310792&sig=9cf16f880e9f7b358f584792d1cc83b8f44ff6c0&callback=?", function (response) { | ||
// Update membership count | ||
$(".js-members").text(response.data.members) | ||
}); | ||
}); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.