mirror of
https://github.com/jcreek/phldnhack.git
synced 2026-07-12 18:43:43 +00:00
36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>RCard</title>
|
|
<script src='http://cdn.ractivejs.org/latest/ractive.js'></script>
|
|
<script src='https://code.jquery.com/jquery-2.1.4.min.js'></script>
|
|
|
|
<!-- Compiled and minified CSS -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.1/css/materialize.min.css">
|
|
|
|
<!-- Compiled and minified JavaScript -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.1/js/materialize.min.js"></script>
|
|
|
|
<script src='/index.js'></script>
|
|
</head>
|
|
<body>
|
|
|
|
<script type="text/ractive" id="parent"><div class="row">
|
|
<div class="col s12 m6 offset-m3">
|
|
<div class="card">
|
|
<div class="card-content">
|
|
<span class="card-title grey-text">{{studentName}} - {{age}}</span>
|
|
<p>I am a very simple card. I am good at containing small bits of information.
|
|
I am convenient because I require little markup to use effectively.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</script>
|
|
|
|
<div id='load'></div>
|
|
|
|
</body>
|
|
</html>
|