mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-05 16:31:21 +00:00
33 lines
1.2 KiB
HTML
33 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Babylonian Tutorial Proof of Concept</title>
|
|
|
|
<link rel="stylesheet" href="{{ static_url('vendor/css/bootstrap.min.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="jumbotron text-center">
|
|
<h1>Tutorial framework Proof of Concept</h1>
|
|
</div>
|
|
<div id="container">
|
|
<div class="row">
|
|
{% for aid in ('a', 'b', 'c') %}
|
|
<div class="col-sm m-3 p-3">
|
|
<p id="anchor_{{ escape(aid) }}" >
|
|
Anchor {{ escape(aid).upper() }} content should be inserted here.
|
|
</p>
|
|
<button type="button" class="btn btn-outline-primary anchor" id="anchor_{{ escape(aid) }}_event">
|
|
Fire anchor {{ escape(aid).upper() }}
|
|
</button>
|
|
</div>
|
|
{% end %}
|
|
</div>
|
|
</div>
|
|
|
|
<script src="{{ static_url('vendor/js/jquery-3.2.1.slim.min.js') }}" defer></script>
|
|
<script src="{{ static_url('vendor/js/popper.min.js') }}" defer></script>
|
|
<script src="{{ static_url('vendor/js/bootstrap.min.js') }}" defer></script>
|
|
<script src="{{ static_url('ws_listener.js') }}" defer></script>
|
|
</body>
|
|
</html> |