Select Text read_text.html
base_.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='dark.css') }}">
<script src="{{ url_for('static', filename='js/firstscript.js') }}"></script>
<link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}" type="image/x-icon">
</head>
<body>
<div class="content">
<header class="sticky">
<span>FlaskArchitect Video Maker</span> | <a
href="{{ url_for('editor') }}">Editor</a> | <a
href="{{ url_for('utilitie') }}">Run Python</a>
<br />
<a href="{{ url_for('search') }}">Search</a>
<input type="text" id="search_input">
<button id="search_submit" onclick="moveToNextOccurrence()">
Find in page Next
</button> | <a href="{{ url_for('index_bash') }}">Run Bash</a>
</header>
<main class="spacer">
{% block content %}
{% endblock %}
</main>
</div>
</body>
</html>
Back to file list