Skip to content

Commit b57ecf9

Browse files
committed
first commit
1 parent 30ac49c commit b57ecf9

30 files changed

Lines changed: 1995 additions & 0 deletions

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/dist
2+
3+
# dependencies
4+
/node_modules
5+
/bower_components
6+
7+
# IDEs and editors
8+
/.idea
9+
.project
10+
.classpath
11+
*.launch
12+
.settings/
13+
14+
15+
#System Files
16+
.DS_Store
17+
Thumbs.db

index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Conduit</title>
6+
<!-- Import Ionicon icons & Google Fonts our Bootstrap theme relies on -->
7+
<link href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet" type="text/css">
8+
<link href="//fonts.googleapis.com/css?family=Titillium+Web:700|Source+Serif+Pro:400,700|Merriweather+Sans:400,700|Source+Sans+Pro:400,300,600,700,300italic,400italic,600italic,700italic"
9+
rel="stylesheet" type="text/css">
10+
<!-- Import the custom Bootstrap 4 theme from our hosted CDN -->
11+
<link rel="stylesheet" href="//demo.productionready.io/main.css">
12+
<link rel="shortcut icon" type="image/x-icon" href="//demo.productionready.io/favicon.ico"/>
13+
</head>
14+
<body>
15+
<script type="module" src="./dist/index.js"></script>
16+
</body>
17+
</html>

logo.png

28.2 KB
Loading

0 commit comments

Comments
 (0)