Skip to content

Commit 0fb3988

Browse files
author
Faris Chebib
committed
added initial partials
1 parent 2e33a9c commit 0fb3988

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

Diff for: about.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<h3>About</h3>

Diff for: index_old.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
2-
layout: default
3-
title: "Utah Python User Group"
2+
title: "Past Presentations"
43
url-needle-map: http://maps.google.com/maps?q=14864+Pony+Express+Dr.+Bluffdale,+UT+84065
54
url-hirevue-map: http://maps.google.com/maps?q=10876+S+River+Front+Pkwy+South+Jordan%2C+UT+84095
65
url-archives: /presentations

Diff for: presentations.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
layout: default
32
title: "Past Presentations"
43
---
54

Diff for: static/js/controller.js

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
11
'use strict';
22

3-
angular.module('utahPython', ['ui.router']);
3+
angular.module('utahPython', ['ui.router'])
4+
.config(function($stateProvider, $urlRouterProvider){
5+
$urlRouterProvider.otherwise("/");
6+
7+
$stateProvider
8+
.state('about', {
9+
url: "/about",
10+
templateUrl: "about.html"
11+
}).
12+
.state('meetups' {
13+
url: "/meetups",
14+
templateUrl: "meetups.html"
15+
})
16+
.state('presentation', {
17+
url: "/presentations",
18+
templateUrl: "presentations.html"
19+
});
20+
});

Diff for: static/js/meetups.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<h4>Meetups</h4>

0 commit comments

Comments
 (0)