Skip to content

Commit

Permalink
Add icon in header
Browse files Browse the repository at this point in the history
  • Loading branch information
jdupl committed May 6, 2016
1 parent 1a3e6af commit 6b578fd
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@
</head>
<body ng-app="app">
<div class="wrapper">
<div class="container">
<div class="row">
<div class="col-md-8">
<h1>Course Activity Planner</h1>
</div>
<div class="col-md-4">
<img src="/assets/fav/favicon-96x96.png" alt="" />
</div>
</div>
</div>
<div class="body" ng-view autoscroll="true">
</div>
<div class="container">
Expand Down
2 changes: 0 additions & 2 deletions public/partials/about.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<div class="container">
<h1>Course Activity Planner</h1>

<h3>Source code and license</h3>
<p>
This free software is under the GPL V3 license. <a href="https://github.com/fuhrmanator/course-activity-planner">Github repository</a>
Expand Down
6 changes: 5 additions & 1 deletion public/partials/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<div class="container">
<h1>Course Activity Planner</h1>
<div class="row">
<div class="col-md-4 col-md-offset-1">
<h1>Create new planning</h1>
Expand Down Expand Up @@ -80,6 +79,11 @@ <h1>Reuse planning</h1>
</div>
</td>
</tr>
<tr ng-hide="plannings.length > 0">
<td>
No planning defined
</td>
</tr>
</tbody>
</table>
</div>
Expand Down
1 change: 0 additions & 1 deletion public/partials/login.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<div class="container">
<h1>Course Activity Planner</h1>
<button ng-click="authenticate()">Sign in with Google</button>
</div>
1 change: 0 additions & 1 deletion public/partials/plan.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<div class="container">
<h1>Course Activity Planner</h1>
<div class="row">
<div class="col-md-12">
<uib-alert ng-repeat="alert in alerts" type="{{alert.type}}" close="closeAlert($index)">{{alert.msg}}</uib-alert>
Expand Down

0 comments on commit 6b578fd

Please sign in to comment.