-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·125 lines (91 loc) · 2.98 KB
/
index.html
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<html>
<head>
<meta charset="utf-8">
<title>IScripting</title>
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<!-- dependencies (jquery, handlebars and bootstrap) -->
<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="js/alpaca/handlebars.min.js"></script>
<link type="text/css" href="css/bootstrap.min.css" rel="stylesheet" />
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- alpaca -->
<link type="text/css" href="css/alpaca.min.css" rel="stylesheet" />
<link type="text/css" href="css/style.css" rel="stylesheet" />
<script type="text/javascript" src="js/alpaca/alpaca.min.js"></script>
<!-- vuejs -->
<script src="js/axios.min.js"></script>
<script type="text/javascript" src="js/vue.min.js"></script>
<!-- css -->
<link type="text/css" href="css/main.css" rel="stylesheet" />
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-3 sidebar-holder">
<header class="sidebar-header" role="banner">
<a href="/">
<img src="images/av.png" class="img-circle">
</a>
<h3 class="title">
<a href="/">VuecaJS</a>
</h3>
<p class="subtitle">Combination of alpacaJS and VueJs
<br> Open Source
</p>
</header>
<div id="contact-list" class="text-center">
<ul class="list-unstyled list-inline">
<li>
<a class="btn btn-default btn-sm" href="https://github.com/IScripting/vucajs">
<i class="fa fa-github-alt fa-lg"></i>
</a>
</li>
<li>
<a class="btn btn-default btn-sm" href="mailto:binhth.alpaca@gmail.com">
<i class="fa fa-envelope fa-lg"></i>
</a>
</li>
</ul>
</div>
<div>
<ul class="nav nav-pills nav-stacked sidenav">
<li>
<a href="index.html">Overview</a>
</li>
<li>
<a href="basic-component.html">Basic components</a>
</li>
<li>
<a href="ui-component.html">UI components</a>
</li>
</ul>
</div>
</div>
<div class="col-md-9">
<div class="page-header">
<h1>
VuecaJS - Easy Forms</h1>
</div>
<p class="alert alert-warning" style="text-align: center">
Latest version:
<a href="https://github.com/IScripting/vucajs/archive/develop.zip">0.1</a> released on 11/14/2017.
</p>
<h2 id="toc_3">Is VuecaJS open source?</h2>
<p>Yes. Combination of alpacaJS and VueJs.</p>
<p>Alpaca is an open-source project and the source code is freely available under the Apache 2 license. We chose the Apache
2 license because it is permissive and lets you get the most out of open source.</p>
<p>VueJs is an open-source project license https://opensource.org/licenses/MIT.</p>
</div>
</div>
<div class="row">
<footer>
<div class="row">
<div class="col-md-6">
</div>
<div class="col-md-6" align="right">© 2017 IScripting. </div>
</div>
</footer>
</div>
</div>
</body>
</html>