mdb-ui-kit/template/index.html
icyflame fd93d74711 Added the template folder.
The index.html file works.

Copying the template folder, or using the structure of this folder, a new project can be started.

This file includes the compiled CSS and the material JS file, alongwith the ripples CSS and JS files.
2014-10-01 12:36:25 +05:30

48 lines
1.3 KiB
HTML

<html>
<head>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="material/ripples.css" rel="stylesheet">
<link href="material/material.css" rel="stylesheet">
</head>
<body>
<!-- Your site -->
<h1>
You can add your site here.
</h1>
<h2>
To ensure that material-design theme is working, check out the buttons below.
</h2>
<h3 class="text-muted">
If you can see the ripple effect on clicking them, then you are good to go!
</h3>
<p class="bs-component">
<a href="javascript:void(0)" class="btn btn-default">Default</a>
<a href="javascript:void(0)" class="btn btn-primary">Primary</a>
<a href="javascript:void(0)" class="btn btn-success">Success</a>
<a href="javascript:void(0)" class="btn btn-info">Info</a>
<a href="javascript:void(0)" class="btn btn-warning">Warning</a>
<a href="javascript:void(0)" class="btn btn-danger">Danger</a>
<a href="javascript:void(0)" class="btn btn-link">Link</a>
</p>
<!-- Your site ends -->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="material/ripples.js"></script>
<script src="material/material.js"></script>
</body>
</html>