baseimage-tutorial-framework/src/app/templates/index.html

43 lines
1.6 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') }}">
<link rel="stylesheet" href="{{ static_url('vendor/css/highlight/github.min.css')}}">
<link rel="stylesheet" href="{{ static_url('index.css')}}">
</head>
<body>
<div class="jumbotron text-center">
<h1>Tutorial framework Demo</h1>
</div>
<div id="container" class="container-fluid tfw-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 class="row">
<div class="col-sm col-md col-lg m-3 p-3" id="anchor_login">
{% module Login('anchor_login') %}
</div>
<div class="col-sm-6 col-md-6 col-lg-6 m-3 p-3">
{% module WebIDE('anchor_webide') %}
</div>
<div class="col-sm col-md col-lg m-3 p-3">
{% module Logger('anchor_logger') %}
</div>
</div>
</div>
<script src="{{ static_url('dist/bundle.js') }}" defer></script>
</body>
</html>