Skip to content

Commit b9e7505

Browse files
author
Faris Chebib
committed
more content updates to prep for launch
1 parent 5d5be02 commit b9e7505

File tree

6 files changed

+31
-18
lines changed

6 files changed

+31
-18
lines changed

Diff for: _includes/meetuptmpl.html

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,27 @@
11
{% raw %}
22
<div ng-controller="MeetupCtrl as meetup">
3-
<ul>
3+
<ul class='list-unstyled'>
44
<li ng-repeat="event in meetup.events
55
|filter:{announced:true}
66
|orderBy:event.time">
77
<h2>
88
{{ event.time+event.utc_offset|date:"MMMM d, h:mma":"UTC" }}
99
</h2>
10-
<h2>
11-
<a href='{{ event.event_url }}'>{{ event.name }}</a>
12-
<a href='{{ event.gmap_url }}'>
10+
<h3>
11+
<a ng-href='{{ event.event_url }}'>{{ event.name }}</a>
12+
<a ng-href='{{ event.gmap_url }}'>
1313
<span class="glyphicon glyphicon-map-marker"></span>
1414
</a>
15-
</h2>
15+
</h3>
1616
<div ng-bind-html="event.description">
1717
</div>
18+
<div>
19+
<a class="btn btn-lg btn-success"
20+
ng-href="{{ event.event_url }}">
21+
<small>{{ event.yes_rsvp_count }} Attending</small><br/>
22+
<b>Join us!</b>
23+
</a>
24+
</div>
1825
<div>
1926
{{ event|json }}
2027
</div>

Diff for: _includes/topnav.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
class="active"
2424
{% endif %}
2525
>
26-
<a ui-sref="upcoming">
27-
Meetups
26+
<a ui-sref="locations">
27+
Locations
2828
</a>
2929
</li>
3030
<li role="presentation"

Diff for: _layouts/default.html

+7-6
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@
2121
</head>
2222

2323
<body id="utahpython.org"><div class="container">
24-
<div class="header">
25-
<h1><a href="/">Utah Python User Group</a></h1>
26-
</div>
24+
<div class="header">
25+
<h1><a href="/">Utah Python User Group</a></h1>
26+
</div>
2727

28-
<div class="content">
29-
{{ content }}
28+
<div class="content">
29+
{{ content }}
30+
</div>
3031
</div>
31-
</div></body>
32+
</body>
3233
</html>

Diff for: upcoming.md renamed to locations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: utahpython
3-
title: "Meetups"
3+
title: "Locations"
44
upcoming-nav: True
55
url-needle-map: http://maps.google.com/maps?q=14864+Pony+Express+Dr.+Bluffdale,+UT+84065
66
url-group: https://groups.google.com/forum/#!forum/utahpython
@@ -13,7 +13,7 @@ url-dupont-map: https://goo.gl/maps/rqX2I
1313
url-pyladies-meetup: http://www.meetup.com/Salt-Lake-Pyladies/
1414
---
1515

16-
## Meetups
16+
## Locations
1717

1818
Utah Python a number of different meetups around Utah.
1919

Diff for: presentations.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ present-nav: True
66

77
# Past Presentations
88

9+
<div class="alert alert-warning">
10+
<span class="glyphicon glyphicon-warning-sign"></span>
11+
This page is still undergoing updates.
12+
</div>
13+
914
## 2011
1015

1116
{:.table .table-bordered .table-striped}

Diff for: static/js/controller.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ angular.module('utahPython', ['ui.router', 'ngSanitize'])
1212
url: "/about",
1313
templateUrl: "about.html"
1414
})
15-
.state('upcoming', {
16-
url: "/upcoming",
17-
templateUrl: "upcoming.html"
15+
.state('locations', {
16+
url: "/locations",
17+
templateUrl: "locations.html"
1818
})
1919
.state('past_present', {
2020
url: "/presentations",

0 commit comments

Comments
 (0)