forked from vapor/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·21 lines (21 loc) · 955 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<title>Vapor (Server-side Swift)</title>
<meta name="description" content="Vapor is a popular web framework written in Swift. It provides a beautifully expressive and easy to use foundation for your next website, API, or cloud project.">
<meta name="keywords" content="server side swift, vaporswift, swiftlang">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono" rel="stylesheet">
<link rel="icon" type="image/png" href="public/favicon-32x32.png" sizes="32x32">
<style type="text/css">
* { box-sizing: border-box; }
html, body { min-width: 100%; min-height: 100%; margin: 0; }
</style>
</head>
<body>
<div id="app"></div>
<script src="./dist/build.js"></script>
</body>
</html>