-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·76 lines (63 loc) · 2.48 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico?v=2">
<title>goasis</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<!-- Custom styles for this template -->
<link href="style.css?v=2" rel="stylesheet">
<!-- Web Components 😎 -->
<script src="js/info-card.js"></script>
</head>
<body>
<header>
<div class="navbar navbar-dark bg-dark box-shadow fixed-top">
<div class="container d-flex justify-content-between">
<a href="https://github.com/goasis" class="navbar-brand d-flex align-items-center">
<img src="goasis.svg" width="20" height="20" class="mr-2">
<strong>GOASIS</strong>
</a>
</div>
</div>
</header>
<main role="main">
<section class="jumbotron text-center">
<div class="container">
<img src="goasis.svg" width="150" height="150" class="mb-4">
<p class="lead text-muted">We are a group of independent developers who have an extreme love for Go</p>
<p>
<a href="https://github.com/goasis" class="btn btn-primary btn-lg"><span class="fa fa-github"></span> View on GitHub</a>
</p>
</div>
</section>
<div class="album py-5 bg-light">
<div class="container">
<div class="row">
<info-card name="edsa" href="https://github.com/goasis/edsa" class="col-md-4">
A Modern API Gateway
</info-card>
<info-card name="sugo" href="https://github.com/goasis/sugo" class="col-md-4">
A breathing HTTP server and reverse proxy in Go
</info-card>
<info-card name="stargate" href="https://github.com/goasis/stargate" class="col-md-4">
Stargate is a notification middleware developed in Go. Initial support will be connectivity to AWS SNS(SMS) and Twilio.
</info-card>
</div>
</div>
</div>
</main>
<footer class="text-muted">
<div class="container">
<p class="float-right">
<a href="#">Back to top</a>
</p>
<p>Open Source projects built and nurtured by Goasis developers</p>
</div>
</footer>
</body>
</html>