mirror of
https://github.com/correl/elm-mdl.git
synced 2024-11-23 11:09:51 +00:00
Initial pages
This commit is contained in:
commit
2a7c065836
3 changed files with 11989 additions and 0 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
elm-stuff
|
||||
.*.sw?
|
||||
index.html
|
||||
docs.json
|
||||
documentation.json
|
21
index.html
Normal file
21
index.html
Normal file
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
||||
<title>elm-mdl-demo</title>
|
||||
|
||||
<!-- MDL -->
|
||||
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,500|Roboto+Mono|Roboto+Condensed:400,700&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
|
||||
<link rel="stylesheet" href="https://code.getmdl.io/1.1.1/material.teal-red.min.css" />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<!-- elm -->
|
||||
<script src="elm.js"></script>
|
||||
<script>
|
||||
app = Elm.fullscreen(Elm.Main);
|
||||
</script>
|
||||
</body>
|
Loading…
Reference in a new issue