mirror of
				https://github.com/avatao-content/baseimage-tutorial-framework
				synced 2025-11-04 13:22:54 +00:00 
			
		
		
		
	Rearrange project and dockerize
This commit is contained in:
		
							
								
								
									
										33
									
								
								src/app/templates/index.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								src/app/templates/index.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,33 @@
 | 
			
		||||
<!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>
 | 
			
		||||
		Reference in New Issue
	
	Block a user