fixed bug with breadcrumb routes (#1554)
* fixed bug with breadcrumb routes * removed example files in commit * Delete example-openapi.yml * Delete example-config.yml
This commit is contained in:
@@ -103,6 +103,10 @@ ENV/
|
||||
# pygeoapi artifacts
|
||||
*.openapi.yml
|
||||
|
||||
# development setup examples
|
||||
example-config.yml
|
||||
example-openapi.yml
|
||||
|
||||
# misc
|
||||
*.swp
|
||||
.pytest_cache
|
||||
|
||||
@@ -1,18 +1,19 @@
|
||||
{% extends "_base.html" %}
|
||||
{% block title %}{{ super() }} {% trans %}TileMatrixSet{% endtrans %} {% endblock %}
|
||||
{% block crumbs %}{{ super() }}
|
||||
/ <a href="./TileMatrixSets/{{ data['id'] }}">{% trans %}TileMatrixSet{% endtrans %}</a>
|
||||
{% endblock %}
|
||||
{% block body %}
|
||||
<section id="tilematrixset">
|
||||
|
||||
<h1>{{ data['id'] }} tile matrix set</h1>
|
||||
<ul>
|
||||
<li>CRS: <i>{{ data['crs'] }}</i></li>
|
||||
<li>Uri: <i>{{ data['uri'] }}</i></li>
|
||||
<li>Well Known Scale Set: <i>{{ data['wellKnownScaleSet'] }}</i></li>
|
||||
</ul>
|
||||
|
||||
|
||||
</section>
|
||||
{% extends "_base.html" %} {% block title %}{{ super() }} {% trans
|
||||
%}TileMatrixSet{% endtrans %} {% endblock %} {% block crumbs %}{{ super() }} /
|
||||
<a href="./">{% trans %}TileMatrixSet{% endtrans %}</a>
|
||||
{% endblock %} {% block body %}
|
||||
<section id="tilematrixset">
|
||||
<h1>{{ data['id'] }} tile matrix set</h1>
|
||||
<ul>
|
||||
<li>
|
||||
CRS: <i>{{ data['crs'] }}</i>
|
||||
</li>
|
||||
<li>
|
||||
Uri: <i>{{ data['uri'] }}</i>
|
||||
</li>
|
||||
<li>
|
||||
Well Known Scale Set: <i>{{ data['wellKnownScaleSet'] }}</i>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user