<!DOCTYPE html> <html>

<head> <meta charset='UTF-8'>

<title>SimpliTest Steps</title>

<meta name=“viewport” content=“width=device-width, initial-scale=1.0”> <script type=“text/javascript” charset=“utf8” src=“cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.js”>> <script type=“text/javascript” charset=“utf8” src=“cdnjs.cloudflare.com/ajax/libs/datatables/1.9.4/jquery.dataTables.min.js”>> <link href=“netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css” rel=“stylesheet”> <script src=“netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js”>> <script> $(document).ready( function () {

$('.dataTable').dataTable( {
  "bPaginate": false
} );

} ); </script> <style>@css</style> </head>

<div class=“container”>

<div class="row clearfix">
  <div class="col-md-12 column">
    <div class="row clearfix">
      <div class="col-md-12 column">
        <div class="page-header">
          <h1>
            SimpliTest <span>Available Steps</span>
          </h1>
        </div>
      </div>
    </div>
    <div class="row clearfix">
      <div class="col-md-8 column">
        <p>
        Version: @version of SimpliTest adds the following steps to the framework. 
        </p>
      </div>
      <div class="col-md-4 column">
      </div>
    </div>
    <table class="dataTable table table-striped table-bordered">
      <thead>
        <tr>
          @header_row
        </tr>
      </thead>
      <tbody>
      @table_body
      </tbody>
    </table>
  </div>
</div>

</div> </body>

</html>