title | layout |
---|---|
Examples Index |
default |
<div class="col-md-3">
<h4>1D Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "1d" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="col-md-3">
<h4>3D Scalar Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "3d_scalar" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="col-md-3">
<h4>3D Vector Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "3d_vector" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="col-md-3">
<h4>Boxfill Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "boxfill" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="col-md-3">
<h4>Isofill Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "isofill" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="col-md-3">
<h4>Isoline Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "isoline" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="col-md-3">
<h4>Meshfill Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "meshfill" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="col-md-3">
<h4>Overlay Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "overlay" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="col-md-3">
<h4>Plot Enhancements Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "plot_enhancements" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="col-md-3">
<h4>Primitives Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "primitives" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="col-md-3">
<h4>Projections Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "projections" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="col-md-3">
<h4>Templates Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "templates" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
<div class="col-md-3">
<h4>Vector Examples</h4>
<ul>
{% for ex in site.examples %}
{% for tag in ex.tags %}
{% if tag == "vector" %}
<li><a href="{{ex.url}}">{{ex.title}}</a></li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>