-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·113 lines (85 loc) · 4.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Favicon icon -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Site Title -->
<title>Fn Project - The Container Native Serverless Framework</title>
<!-- Google fonts -->
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,500,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 tooltipss and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Edit Main Menu Here -->
<div class="ham-menu" id="mainmenu">
<!-- input and label for hamburger menu -->
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu-content">
<li><a href="https://github.com/fnproject/fn#top">Quickstart</a></li>
<li><a href="https://github.com/fnproject/docs#-project-documentation">Docs</a></li>
<li><a href="https://fnproject.io/tutorials">Tutorials</a></li>
<li><a href="https://slack.fnproject.io">Slack</a></li>
<li><a href="https://medium.com/fnproject">Medium</a></li>
<li><a href="https://twitter.com/fnproject">Twitter</a></li>
<li><a href="https://www.youtube.com/fnproj">YouTube</a></li>
<li><a href="https://github.com/fnproject" >View on GitHub</a></li>
</ul>
</div>
<!-- HOME -->
<div class="fn-container">
<div class="fn-content" id="overview">
<!-- Introduction-->
<h1 >Fn Project</h1>
<h4>Open Source. Container-native. Serverless platform.</h4>
<img src="images/fn-background-sample.png" id="fn-wave" />
<h4 class="line-1-5">
The Fn project is an open-source container-native serverless platform that you can run anywhere -- any cloud or on-premise. It’s easy to use, supports every programming language, and is extensible and performant.
</h4>
<!-- Get Started -->
<h4 class="gap">Tutorials</h4>
<div id="iconlist">
<a href="https://fnproject.io/tutorials/Introduction/" rel="popover" title="Go"><img src="images/langs/golang64-gray.jpg" alt="Go logo"></a>
<a href="https://fnproject.io/tutorials/JavaFDKIntroduction/" rel="popover" title="Java"><img src="images/langs/java-logo-gray.jpg" alt="Java logo"></a>
<a href="https://fnproject.io/tutorials/node/intro/" rel="popover" title="Node.js"><img src="images/langs/nodejs-logo-gray.jpg" alt="Node.js logo"></a>
<a href="https://fnproject.io/tutorials/python/intro/" title="Python" rel="popover"><img src="images/langs/Python76-gray.jpg" alt="Python logo"></a>
<a href="https://fnproject.io/tutorials/ruby/intro/" rel="popover" title="Ruby"><img src="images/langs/ruby-logo-gray.jpg" alt="Ruby logo"></a>
<a href="https://fnproject.io/tutorials/csharp/intro/" rel="popover" title="C#"><img src="images/langs/csharp-logo-gray.png" alt="C# logo"></a>
</div> <!-- end div -->
</div> <!-- End Content-->
</div> <!-- end container -->
<!-- END HOME -->
<!-- FOOTER -->
<footer>
<p style="text-align: center; margin-top: 4em;">
<script type="text/javascript">var today=new Date(); document.write(today.getFullYear());</script> ©
<img src="images/fn-300x125.png" class="logo-bottom" />
</p>
</footer>
<!-- END FOOTER -->
<!-- Load js here. Placed at the end of the document so the pages load faster -->
<!-- Triggers popup text -->
<script>
$(document).ready(function() {
$("[rel=popover]").popover({'trigger':'hover'});
});
</script>
</body>
</html>