]> Softwares of Agnibho - pdosage.git/blob - src/AboutView.vue
Typo correction
[pdosage.git] / src / AboutView.vue
1 <!--
2 ***********************************************************************
3 * Title: PDosage
4 * Description: Pediatric Dose Calculator
5 * Author: Agnibho Mondal
6 * Website: http://code.agnibho.com
7 **********************************************************************
8 Copyright (c) 2016 Agnibho Mondal
9 All rights reserved
10 **********************************************************************
11 This file is part of PDosage.
12
13 PDosage is free software: you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation, either version 3 of the License, or
16 (at your option) any later version.
17
18 PDosage is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with PDosage. If not, see <http://www.gnu.org/licenses/>.
25 ***********************************************************************
26 -->
27 <template>
28 <div class="row">
29 <hr>
30 <div class="col-md-6 col-md-offset-3">
31 <div class="panel panel-default">
32 <div class="panel-heading">
33 <h3>About PDosage <span class="version"></span></h3>
34 </div>
35 <div class="panel-body">
36 <p>PDosage is a web application for calculating dosage of some commonly used drugs. Although it's primarily designed for the practice of Pediatrics, it also provides adult doses of drugs, making it useful for other disciplines too.</p>
37 <p>PDosage is written in Javascript.</p>
38 <p>App Version: <span class="version"></span></p>
39 <p>Data version: <span class="data-ver"></span></p>
40 <p>Copyright &copy; <span class="copyright" data-start="2016">2016</span> Agnibho Mondal</p>
41 <p>E-mail: mail@agnibho.com</p>
42 </div>
43 </div>
44 </div>
45 </div>
46 </template>
47
48 <script>
49 export default {
50 name: "AboutView"
51 }
52 </script>