mirror of
https://github.com/simonw/datasette.git
synced 2026-06-07 01:27:00 +02:00
12 lines
209 B
HTML
12 lines
209 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ filename }}{% endblock %}
|
|
|
|
{% block body_class %}show-json{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ filename }}</h1>
|
|
|
|
<pre>{{ data_json }}</pre>
|
|
|
|
{% endblock %}
|