<!-- templates/utilities.html -->
{% extends 'base_.html' %}
{% block title %}Utilities - My App{% endblock %}
{% block content %}
<body>
<h3>Utilities</h3>
<a href="{{ url_for('editor') }}">Editor</a> | <a href="{{ url_for('index_bash') }}">Run Bash</a> | <a href="{{ url_for('terminal_index') }}">Terminal</a>
</body>
{% endblock %}
Back to file list