Skip to content

Commit baa802e

Browse files
author
Faris Chebib
committed
added robots.txt and debug page
1 parent 5db18cf commit baa802e

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

Diff for: _includes/meetuptmpl.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{% raw %}
2-
<div ng-controller="MeetupCtrl">
2+
<div ng-controller="MeetupCtrl as meetup">
3+
{{ meetup.hello }}
34
</div>
45
{% endraw %}

Diff for: meetups.md renamed to debugmeetups.md

File renamed without changes.

Diff for: robots.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
User-agent: *
2+
Disallow: debugmeetups.html

Diff for: static/js/controller.js

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ angular.module('utahPython', ['ui.router'])
3333
meetup.signed_url = "https://api.meetup.com/2/events?offset=0&format=json&limited_events=False&group_urlname=UtahPython&page=200&fields=&order=time&desc=false&status=upcoming&sig_id=10704711&sig=7eb0b440ac115c04d9133423ec0eb94c8d6ded89"
3434

3535
meetup.events = [];
36+
meetup.hello = "Hello world";
3637

3738
meetup.loadMeetups = function loadGames () {
3839
$http.get(meetup.signed_url)

0 commit comments

Comments
 (0)