20 lines
580 B
Plaintext
20 lines
580 B
Plaintext
<rml>
|
|
<head>
|
|
<title>Critterfolio</title>
|
|
<link type="text/rcss" href="styles/main.rcss" />
|
|
</head>
|
|
|
|
<body data-model="app_data">
|
|
<h1>{{page_title}}</h1>
|
|
|
|
<h2>Critter Roster</h2>
|
|
<div class="critter-list">
|
|
<div data-for="entry : critters" class="critter-card">
|
|
<h3>#{{entry.key}} - {{entry.value.name}}</h3>
|
|
<p><strong>Species:</strong> {{entry.value.species}}</p>
|
|
<p><strong>Gender:</strong> {{entry.value.gender}}</p>
|
|
<p><strong>Notes:</strong> {{entry.value.notes}}</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</rml> |