Skip to content

Instantly share code, notes, and snippets.

@secantsquared
Last active April 28, 2020 04:29
Show Gist options
  • Save secantsquared/cd14857fda225248dc5f91579fe1d4d7 to your computer and use it in GitHub Desktop.
Save secantsquared/cd14857fda225248dc5f91579fe1d4d7 to your computer and use it in GitHub Desktop.
modifiedtemp
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>
Financial Crime in Casinos in the Southwest Region of the U.S.
</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Bootstap -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Ubuntu"
rel="stylesheet"
/>
<link rel="stylesheet" href="../static/css/style.css" />
<!-- Leaflet CSS & JS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-tAGcCfR4Sc5ZP5ZoVz0quoZDYX5aCtEm/eu1KhSLj2c9eFrylXZknQYmxUssFaVJKvvc0dJQixhGjG2yXWiV9Q=="
crossorigin=""></script>
</head>
<head>
<meta charset="utf-8">
<title>Financial Crime in Casinos in the Southwest Region of the U.S.</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="../static/css/style.css">
<!-- Leaflet CSS & JS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-tAGcCfR4Sc5ZP5ZoVz0quoZDYX5aCtEm/eu1KhSLj2c9eFrylXZknQYmxUssFaVJKvvc0dJQixhGjG2yXWiV9Q=="
crossorigin=""></script>
</head>
<body>
<nav class="navbar navbar-default fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">Home
</a>
<a class="navbar-brand" href="about.html">About
</a>
</div>
</div>
</nav>
<div class="hero text-center">
<h1>Financial Crime in Casinos in the Southwest Region of the U.S.</h1>
<p>A Heatmap of Reportings by County</p>
</div>
<div class="container-fluid">
<div class="row mx-1 px-1">
<div id="map" class="col-lg-7 bg-secondary">
</div>
<table id="state-table" class="col-lg-5 table table-striped">
<thead>
<tr>
<th class="table-head">Year</th>
<th class="table-head">State</th>
<th class="table-head">County</th>
<th class="table-head">Industry</th>
<th class="table-head">Suspicious Activity</th>
<th class="table-head">Count</th>
</tr>
</thead>
<tbody>
{% for item in results %}
<tr>
<td>{{item.Year}}</td>
<td>{{item.State}}</td>
<td>{{item.Countym}}</td>
<td>{{item.Industry}}</td>
<td>{{item.SuspiciousActivity}}</td>
<td>{{item.Count}}</td>
</tr>
{% endfor %}
</tbody>
</table>
<!-- </div> -->
</div>
</div>
<footer class="footer">
<span class="bottom">Financial Crime in Southwestern U.S.</span>
</footer>
</div>
<!-- Bootstrap -->
<script
src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.11.0/d3.js"></script>
<script type="text/javascript" src="../static/js/config.js"></script>
<script type="text/javascript" src="../static/js/logic.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment