forked from expo/troggle
20 lines
337 B
HTML
20 lines
337 B
HTML
{% extends "cavebase.html" %}
|
|
{% load wiki_markup %}
|
|
|
|
{% block title %}Cave Index{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
123 testing 123 testing
|
|
|
|
{{ somenonsense }}
|
|
|
|
{{ notablecaves }}
|
|
|
|
{% for cave in notablecaves %}
|
|
<li> Also update <a href="{{ cave.fixedfield }}">wrap {{ cave.fixedfield }}wrap </a> </li>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|