Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
Renaming pages and adding content
Browse files Browse the repository at this point in the history
Working on #18 #17 #16 #
  • Loading branch information
jakevis committed Mar 23, 2018
1 parent 764a0f6 commit af86059
Show file tree
Hide file tree
Showing 19 changed files with 59 additions and 58 deletions.
2 changes: 1 addition & 1 deletion Queercon/.sourcemaps/main.js.map

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions Queercon/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { BrowserModule } from '@angular/platform-browser';
import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular';
import { MyApp } from './app.component';

import { CalendarPage } from '../pages/calendar/calendar';
import { AboutPage } from '../pages/about/about';
import { EventsPage } from '../pages/events/events';
import { SupportersPage } from '../pages/supporters/supporters';
import { ContactPage } from '../pages/contact/contact';
import { HomePage } from '../pages/home/home';
import { TabsPage } from '../pages/tabs/tabs';
Expand All @@ -15,8 +15,8 @@ import { SplashScreen } from '@ionic-native/splash-screen';
@NgModule({
declarations: [
MyApp,
AboutPage,
CalendarPage,
SupportersPage,
EventsPage,
ContactPage,
HomePage,
TabsPage
Expand All @@ -28,8 +28,8 @@ import { SplashScreen } from '@ionic-native/splash-screen';
bootstrap: [IonicApp],
entryComponents: [
MyApp,
AboutPage,
CalendarPage,
SupportersPage,
EventsPage,
ContactPage,
HomePage,
TabsPage
Expand Down
Binary file added Queercon/src/assets/imgs/full_name_band.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Queercon/src/assets/imgs/thumbgrey.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions Queercon/src/pages/about/about.scss

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<ion-header>
<ion-navbar>
<ion-title>
Calendar
Events
</ion-title>
</ion-navbar>
</ion-header>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';

@Component({
selector: 'page-about',
templateUrl: 'about.html'
selector: 'page-events',
templateUrl: 'events.html'
})
export class AboutPage {
export class EventsPage {

constructor(public navCtrl: NavController) {

Expand Down
9 changes: 5 additions & 4 deletions Queercon/src/pages/home/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<ion-title>Home</ion-title>
</ion-navbar>
</ion-header>

<ion-content padding>
<h2>Welcome to Ionic!</h2>
<p>
This starter project comes with simple tabs-based layout for apps
<img src="assets/imgs/full_name_band.png">
<p>
This starter project comes with simple tabs-based layout for apps
that are going to primarily use a Tabbed UI.
</p>
<p>
Expand All @@ -16,3 +16,4 @@ <h2>Welcome to Ionic!</h2>
</p>

</ion-content>

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<ion-header>
<ion-navbar>
<ion-title>
About Queercon
Our Valued Supporters
</ion-title>
</ion-navbar>
</ion-header>
Expand Down
3 changes: 3 additions & 0 deletions Queercon/src/pages/supporters/supporters.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
page-supporters {

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';

@Component({
selector: 'page-calendar',
templateUrl: 'calendar.html'
selector: 'page-supporters',
templateUrl: 'supporters.html'
})
export class CalendarPage {
export class SupportersPage {

constructor(public navCtrl: NavController) {

Expand Down
4 changes: 2 additions & 2 deletions Queercon/src/pages/tabs/tabs.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<ion-tabs>
<ion-tab [root]="tab1Root" tabTitle="Home" tabIcon="home"></ion-tab>
<ion-tab [root]="tab2Root" tabTitle="Calendar" tabIcon="calendar"></ion-tab>
<ion-tab [root]="tab3Root" tabTitle="About Queercon" tabIcon="information-circle"></ion-tab>
<ion-tab [root]="tab2Root" tabTitle="Events" tabIcon="calendar"></ion-tab>
<ion-tab [root]="tab3Root" tabTitle="Supporters" tabIcon="information-circle"></ion-tab>
<ion-tab [root]="tab4Root" tabTitle="Stay in Touch" tabIcon="contacts"></ion-tab>
</ion-tabs>
8 changes: 4 additions & 4 deletions Queercon/src/pages/tabs/tabs.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component } from '@angular/core';

import { CalendarPage } from '../calendar/calendar';
import { AboutPage } from '../about/about';
import { EventsPage } from '../events/events';
import { SupportersPage } from '../supporters/supporters';
import { ContactPage } from '../contact/contact';
import { HomePage } from '../home/home';

Expand All @@ -11,8 +11,8 @@ import { HomePage } from '../home/home';
export class TabsPage {

tab1Root = HomePage;
tab2Root = CalendarPage;
tab3Root = AboutPage;
tab2Root = EventsPage;
tab3Root = SupportersPage;
tab4Root = ContactPage;

constructor() {
Expand Down
Binary file added Queercon/www/assets/imgs/full_name_band.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Queercon/www/assets/imgs/thumbgrey.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 28 additions & 28 deletions Queercon/www/build/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit af86059

Please sign in to comment.