mirror of
				https://github.com/avatao-content/baseimage-tutorial-framework
				synced 2025-11-04 00:52:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			2.0 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('vendor/js/jquery-3.2.1.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('vendor/js/highlight.min.js') }} defer"></script>
 | 
						|
    <script src="{{ static_url('vendor/js/showdown.min.js') }} defer"></script>
 | 
						|
    <script src="{{ static_url('vendor/js/ace/ace.js') }} defer"></script>
 | 
						|
    <script src="{{ static_url('ws_listener.js') }}" defer></script>
 | 
						|
</body>
 | 
						|
</html> |