-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredits.htm
53 lines (48 loc) · 3.76 KB
/
credits.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<div class="row">
<div class="col-md-12">
<div class="card card-nav-tabs">
<div class="card-header" data-background-color="blue">
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper">
<ul class="nav nav-tabs" data-tabs="tabs">
<li ng-class="{active: isPanelActive(0)}">
<a ng-click="setActivePanel(0)">
<i class="material-icons">code</i> Credits
<div class="ripple-container"></div>
</a>
</li>
<li ng-class="{active: isPanelActive(1)}">
<a ng-click="setActivePanel(1)">
<i class="material-icons">copyright</i> License
<div class="ripple-container"></div>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="card-content">
<div class="tab-content">
<div class="tab-pane" ng-class="{active: isPanelActive(0)}">
<h3 class="text-center">Logo</h3>
<p class="text-center text-muted">The logo and some design tips are the work of <a href="https://www.linkedin.com/in/millyzecchinato">Milly Zecchinato</a>.</p>
<h3 class="text-center">Template & fonts</h3>
<p class="text-center text-muted">The template is developed by <a href="https://www.creative-tim.com/">Creative Tim</a> and it's downloadable at <a href="https://github.com/creativetimofficial/material-dashboard/">Github</a>.</p>
<p class="text-center text-muted">The icon pack is <a href="https://material.io/icons/">Material Design</a>.</p>
<h3 class="text-center">Open Source Project</h3>
<p class="text-center text-muted">The code of <a href="https://github.com/alessandro1105/fishmograph-webapp">webapp</a> and <a href="https://github.com/alessandro1105/fishmograph-firmware">firmware</a> can be freely downloaded.</p>
<h3 class="text-center">Contributions</h3>
<p class="text-center text-muted">This project has been developed with the help of <a href="http://www.futurashop.it">Futura Elettronica</a>, <a href="http://www.elettronicain.it">Elettronica In</a>, <a href="https://www.open-electronics.org">Open Electronics</a>. </p>
</div>
<div class="tab-pane" ng-class="{active: isPanelActive(1)}">
<h3 class="text-center">APACHE LICENSE v2</h3>
<p class="text-center text-muted">Copyright 2018 Alessandro Pasqualini</p>
<p class="text-center text-muted"> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at</p>
<p class="text-center text-muted"><a href="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</a></p>
<p class="text-center text-muted">Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.</p>
</div>
</div>
</div>
</div>
</div>
</div>