Advertisement
Guest User

hasil.html

a guest
Aug 22nd, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Index</title>
  7. <!-- BOOTSTRAP STYLES-->
  8. <link rel="stylesheet" href="{{url_for('static',filename='assets/css/bootstrap.css' )}}">
  9. <!-- FONTAWESOME STYLES-->
  10. <link rel="stylesheet" href="{{ url_for('static',filename='assets/css/font-awesome.css' )}}">
  11. <!-- CUSTOM STYLES-->
  12. <link rel="stylesheet" href="{{ url_for('static',filename='assets/css/custom.css' )}}">
  13. <!-- GOOGLE FONTS-->
  14. <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' />
  15. </head>
  16. <body>
  17. <div id="wrapper" >
  18. <nav class="navbar navbar-default navbar-cls-top " role="navigation" style="margin-bottom: 0">
  19. <div class="navbar-header" >
  20. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".sidebar-collapse">
  21. <span class="sr-only">Toggle navigation</span>
  22. <span class="icon-bar"></span>
  23. <span class="icon-bar"></span>
  24. <span class="icon-bar"></span>
  25. </button>
  26. <a class="navbar-brand" href="index.html" style="color: white; padding-right: 40px; font-size: 25px"> ANALISIS SENTIMEN</a>
  27. </div>
  28. <div style="color: white;
  29. padding: 15px 50px 5px 50px;
  30. text-align: center;
  31. float: center;
  32. font-size: 20px;"> K-Nearest Neighbour
  33. </div>
  34. </nav>
  35. <!-- /. NAV TOP -->
  36. <nav class="navbar-default navbar-side" role="navigation">
  37. <div class="sidebar-collapse">
  38. <ul class="nav" id="main-menu">
  39. <li class="text-center">
  40. <li>
  41. <a href="{{url_for('index')}}"><i class="fa fa-square-o fa-3x"></i> Index</a>
  42. </li>
  43. <li>
  44. <a class="active-menu" href="{{url_for('hasil')}}"><i class="fa fa-square-o fa-3x"></i> K-Nearest Neighbour</a>
  45. </li>
  46.  
  47. </li>
  48. </ul>
  49. </div>
  50. </nav>
  51. <!-- /. NAV SIDE -->
  52.  
  53. <div id="page-wrapper" >
  54. <div id="page-inner">
  55. <div class="row">
  56. <div class="col-md-12" >
  57. <h2> K-Nearest Neighbour</h2>
  58. <div class="info-box">
  59. <span class="info-box-icon bg-blue"><i class="fa fa-smile-o"></i>></span>
  60. <div class="info-box-content">
  61. <span class="info-box-text"> Positif</span>
  62. <span class="info-box-number">{{persen_pos}} %</span>
  63. </div>
  64. </div>
  65. <div class="info-box">
  66. <span class="info-box-icon bg-red"><i class="fa fa-frown-o"></i></span>
  67.  
  68. <div class="info-box-content">
  69. <span class="info-box-icon"> Negatif</span>
  70. <span class="info-box-number">{{persen_neg}} %</span>
  71. </div>
  72. </div>
  73. <div class="table-responsive">
  74. {% for table in tables %}
  75.  
  76. {{ table|safe }}
  77. {% endfor %}
  78. </div>
  79. <!--<div class="row">
  80. <div class="col-md-12">
  81. <h2> Accuracy</h2>
  82. <img src="{{url_for('static', filename='Figure_1.png')}}">
  83. </div>
  84.  
  85. </div> -->
  86. </div>
  87. </div>
  88. <!-- /. ROW -->
  89. <hr />
  90.  
  91. </div>
  92. <!-- /. PAGE INNER -->
  93. </div>
  94. <!-- /. PAGE WRAPPER -->
  95. </div>
  96. <!-- /. WRAPPER -->
  97. <!-- SCRIPTS -AT THE BOTOM TO REDUCE THE LOAD TIME-->
  98. <!-- JQUERY SCRIPTS -->
  99. <script src="{{ url_for('static',filename='assets/js/jquery-1.10.2.js' )}}"></script>
  100.  
  101.  
  102. <!-- BOOTSTRAP SCRIPTS -->
  103. <script src="{{ url_for('static',filename='assets/js/bootstrap.min.js' )}}"></script>
  104. <!-- METISMENU SCRIPTS -->
  105. <script src="{{ url_for('static',filename='assets/js/jquery.metisMenu.js' )}}"></script>
  106. <!-- CUSTOM SCRIPTS -->
  107. <script src="{{ url_for('static',filename='assets/js/custom.js' )}}"></script>
  108.  
  109. <script>
  110. $(document).ready(function() {
  111. $('#tabel').DataTable({});
  112. } );
  113. </script>
  114. </body>
  115. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement