mirror of https://github.com/metafizzy/isotope
Filter & sort magical layouts
http://isotope.metafizzy.co
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
568 B
40 lines
568 B
14 years ago
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>default</title>
|
||
|
|
||
|
<style media="screen">
|
||
|
|
||
|
</style>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<h1>default</h1>
|
||
|
|
||
|
<p>{{ site.site_name }}</p>
|
||
|
|
||
|
{% for element in site.elements %}
|
||
|
<li>{{ element }}</li>
|
||
|
{% endfor %}
|
||
|
|
||
|
<ul>
|
||
|
{% for element in site.elements2 %}
|
||
|
<li>{{ element.name }} {{ element.number }}</li>
|
||
|
{% endfor %}
|
||
|
|
||
|
</ul>
|
||
|
|
||
|
<ul>
|
||
|
{% for item in site.items %}
|
||
|
<li>{{ item.part_no }}</li>
|
||
|
{% endfor %}
|
||
|
|
||
|
</ul>
|
||
|
|
||
|
<p>parking tickets</p>
|
||
|
|
||
|
</body>
|
||
|
</html>
|