istio.io/istio@v0.0.0-20240520182934-d79c90f27776/samples/bookinfo/src/productpage/templates/index.html (about) 1 {% extends "bootstrap/base.html" %} 2 {% block metas %} 3 <meta charset="utf-8"> 4 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 5 <meta name="viewport" content="width=device-width, initial-scale=1"> 6 {% endblock %} 7 8 {% block styles %} 9 <!-- Latest compiled and minified CSS --> 10 <link rel="stylesheet" href="static/bootstrap/css/bootstrap.min.css"> 11 12 <!-- Optional theme --> 13 <link rel="stylesheet" href="static/bootstrap/css/bootstrap-theme.min.css"> 14 {% endblock %} 15 {% block scripts %} 16 <!-- Latest compiled and minified JavaScript --> 17 <script src="static/jquery.min.js"></script> 18 19 <!-- Latest compiled and minified JavaScript --> 20 <script src="static/bootstrap/js/bootstrap.min.js"></script> 21 {% endblock %} 22 {% block title %}Simple Bookstore App{% endblock %} 23 {% block content %} 24 <p> 25 <h3>Hello! This is a simple bookstore application consisting of three services as shown below</h3> 26 </p> 27 {% autoescape false %} 28 {{ serviceTable }} 29 {% endautoescape %} 30 <p> 31 <h4>Click on one of the links below to auto generate a request to the backend as a real user or a tester 32 </h4> 33 </p> 34 <p><a href="/productpage?u=normal">Normal user</a></p> 35 <p><a href="/productpage?u=test">Test user</a></p> 36 {% endblock %}