-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (110 loc) · 4.22 KB
/
index.html
File metadata and controls
115 lines (110 loc) · 4.22 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Impetus Open source</title>
<link rel="icon" href="images/favicon.ico" type="image/gif">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/vue.min.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="https://www.impetus.com/" target="_blank">
<img src="images/logo.svg" height="30"></img>
</a>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="https://github.com/Impetus" target="_blank">Github</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.impetus.com/company" target="_blank">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.impetus.com/contact" target="_blank">Contact Us</a>
</li>
</ul>
</nav>
<div id="app" class="container-fluid" v-cloak>
<div class="row page-title">
<h1 class="col-lg-12">Impetus Open Source</h1>
<p class="col-lg-12 text-center">A community to share, learn and innovate.</p>
</div>
<div class="row flex-container">
<div class="card" v-for="project in projects">
<div class="card-body">
<h5 class="card-title">
<a :href="project.projectLink" target="_blank">{{ project.projectTitle }}</a>
</h5>
<h6 v-if="project.category || (project.userTypes && project.userTypes.length > 0)" class="card-subtitle mb-2 text-muted flex-container">
<span v-if="project.category" class="tag" style="background-color:#1976D2">{{ project.category }}</span>
<span v-if="project.userTypes" v-for="userType in project.userTypes" class="tag" style="background-color:#43A047">{{ userType }}</span>
</h6>
<p class="card-text"> {{ project.projectDescription }} </p>
</div>
<div v-if="project.license" class="card-footer">
<span class="tag">{{project.license}}</span>
</div>
</div>
</div>
</div>
<script>
var app = new Vue({
el: '#app',
data: {
projects: [
{
projectTitle: 'Ankush',
projectLink: 'https://github.com/Impetus/ankush',
category: 'Platform',
userTypes: ['DevOps', 'Developers'],
license: 'LGPL-3.0',
projectDescription: "A Big Data cluster management tool that creates and manages clusters of different technologies."
},
{
projectTitle: 'Jumbune',
projectLink: 'https://github.com/Impetus/jumbune',
category: 'Platform',
userTypes: ['DataOps', 'DevOps', 'Developers'],
license: 'LGPL-3.0',
projectDescription: "Hadoop cluster Proactive monitoring, Big Data application analysis & data quality tool"
},
{
projectTitle: 'Kundera',
projectLink: 'https://github.com/Impetus/Kundera',
category: 'Library',
userTypes: ['DataOps', 'Developers'],
license: 'Apache-2.0',
projectDescription: "A JPA 2.1 compliant Polyglot Object-Datastore mapping library for NoSQL datastores."
},
{
projectTitle: 'Couverture',
projectLink: 'https://github.com/Impetus/couverture',
category: 'Plugin',
userTypes: [ 'Developers'],
license: 'LGPL-3.0',
projectDescription: "Analyzes the code coverage for newly developed user stories. Available as sonar plugin and standalone jar file."
},
{
projectTitle: 'Ethereum JDBC Driver',
projectLink: 'https://github.com/Impetus/eth-jdbc-connector',
category: 'Plugin',
userTypes: [ 'Developers'],
license: 'Apache-2.0',
projectDescription: "A pure java, type 4 JDBC driver that executes SQL queries on Ethereum Blockchain."
},
{
projectTitle: 'Fabric JDBC Driver',
projectLink: 'https://github.com/Impetus/fabric-jdbc-connector',
category: 'Plugin',
userTypes: [ 'Developers'],
license: 'Apache-2.0',
projectDescription: "A pure java, type 4 JDBC driver that executes SQL queries on Hyperledger fabric Blockchain."
}]
}
});
</script>
</body>
</html>