Skip to content

Commit

Permalink
added the logo banner
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelFlops committed Apr 25, 2015
1 parent 6981599 commit a312a9c
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 2 deletions.
1 change: 1 addition & 0 deletions .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ jquery
twbs:bootstrap
fourseven:scss
fortawesome:fontawesome
iron:router
8 changes: 8 additions & 0 deletions .meteor/versions
Empty file added items.js
Empty file.
4 changes: 2 additions & 2 deletions main.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<li><a ng-href="#"><span class="glyphicon glyphicon-minus"></span></a></li>
<!-- <li><img src="/omariplace.jpg" height="50%" width="50%"></a></li> -->
</ul>
<h1 class="text-muted"><a href="/">Noding Bat</a></h1>
<!-- <img src="/bat-web.jpg" alt="<3"> -->
<!-- <h1 class="text-muted"><a href="/">Noding Bat</a></h1> -->
<img src="/noding_bat_v2.png" alt="<3">
</div>
<div ng-view=""></div>
<hr>
Expand Down
Binary file added public/Ashas_first_chick_on_wacommy.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 public/noding_bat_v1.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 public/noding_bat_v2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added publications.js
Empty file.
12 changes: 12 additions & 0 deletions routes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Router.route('/solutions/:_id', function () {
var item = Items.findOne({_id: this.params._id});
this.render('ShowItem', {data: item});
});

Router.route("/", function() {
this.render("exercise");
});

Router.configure({
layoutTemplate: 'layout'
});

0 comments on commit a312a9c

Please sign in to comment.