Skip to content

Commit 8e85426

Browse files
committed
docs: add license
1 parent 652a0c6 commit 8e85426

File tree

6 files changed

+44
-2
lines changed

6 files changed

+44
-2
lines changed

docs/app/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<md-snackbar class="version-message" md-theme="default" :md-active.sync="message" :md-duration="Infinity">
1818
<span>This site is for the Vue Material 1.0 beta.</span>
1919
<div>
20-
<md-button href="https://vue-material-old.netlify.com/">Visit old docs</md-button>
20+
<md-button href="https://vue-material-old.netlify.com/" target="_blank">Visit old docs</md-button>
2121
<md-button class="md-accent" @click="closeMessage">Dismiss</md-button>
2222
</div>
2323
</md-snackbar>

docs/app/i18n/en-US.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ export default {
2323
about: {
2424
title: 'About'
2525
},
26+
license: {
27+
title: 'License'
28+
},
2629
gettingStarted: {
2730
title: 'Getting Started',
2831
introduction: 'Vue Material is the best integration between Vue.js and Material Design specs! You can easily configure it to suit all your needs. All you have to do is choose an installation method that fits you better and follow it\'s instructions. Let\'s start!',

docs/app/pages/License.vue

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<template>
2+
<page-container centered :title="$t('pages.about.title')">
3+
<section class="page-container-section">
4+
<h2 class="md-title">The MIT License (MIT)</h2>
5+
6+
<p>Copyright (c) 2016 <a href="https://www.github.com/marcosmoura" target="_blank">Marcos Moura</a></p>
7+
8+
<p>Permission is hereby granted, free of charge, to any person obtaining a copy
9+
of this software and associated documentation files (the "Software"), to deal
10+
in the Software without restriction, including without limitation the rights
11+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
copies of the Software, and to permit persons to whom the Software is
13+
furnished to do so, subject to the following conditions:</p>
14+
15+
<p>The above copyright notice and this permission notice shall be included in
16+
all copies or substantial portions of the Software.</p>
17+
18+
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24+
THE SOFTWARE.</p>
25+
</section>
26+
</page-container>
27+
</template>
28+
29+
<script>
30+
export default {
31+
name: 'License'
32+
}
33+
</script>

docs/app/pages/Themes/Prebuilt.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@
4040

4141
<script>
4242
export default {
43-
name: 'Concepts'
43+
name: 'Prebuilt'
4444
}
4545
</script>

docs/app/routes.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,11 @@ export const routes = [
9494
name: 'about',
9595
page: 'About.vue'
9696
},
97+
{
98+
path: '/license',
99+
name: 'license',
100+
page: 'License.vue'
101+
},
97102
{
98103
path: '/',
99104
name: 'home',

docs/app/template/MainNavContent.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
</div>
7373

7474
<router-link to="/about">{{ $t('pages.about.title') }}</router-link>
75+
<router-link to="/license">{{ $t('pages.license.title') }}</router-link>
7576
<a href="https://vue-material-old.netlify.com/" target="_blank">Old Version (0.8.1)</a>
7677
</div>
7778
</template>

0 commit comments

Comments
 (0)