Skip to content

Commit

Permalink
Bootstrap 4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
djibe authored Jan 6, 2019
1 parent a84413b commit e085fe8
Showing 1 changed file with 60 additions and 58 deletions.
118 changes: 60 additions & 58 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,73 +2,75 @@
<html lang="en">

<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CSV to HTML Table</title>
<meta name="author" content="Derek Eder">
<meta content="Display any CSV file as a searchable, filterable, pretty HTML table">
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CSV to HTML Table</title>
<meta name="author" content="Derek Eder">
<meta content="Display any CSV file as a searchable, filterable, pretty HTML table">

<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap4.min.css">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS"
crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.19/css/dataTables.bootstrap4.min.css">
</head>

<body>
<div class="container-fluid">
<main class="row">
<div class="col">
<h1>CSV to HTML Table</h1>
<div class="container-fluid">
<main class="row">
<div class="col">
<h1>CSV to HTML Table</h1>

<p>Display any CSV file as a searchable, filterable, pretty HTML table. Done in 100% JavaScript. <a href="https://github.com/derekeder/csv-to-html-table">Code
on GitHub</a>.</p>
<p>Display any CSV file as a searchable, filterable, pretty HTML table. Done in 100% JavaScript. <a
href="https://github.com/derekeder/csv-to-html-table">Code
on GitHub</a>.</p>

<p> Here's a table of Health Clinics from the <a href="https://data.cityofchicago.org/browse?q=health%20clinic&sortBy=relevance&utf8=%E2%9C%93">City
of Chicago Data Portal</a>.
</p>
<p> Here's a table of Health Clinics from the <a href="https://data.cityofchicago.org/browse?q=health%20clinic&sortBy=relevance&utf8=%E2%9C%93">City
of Chicago Data Portal</a>.
</p>

<div id="table-container"></div>
</div>
</main>
<footer class="row">
<div class="col">
<hr>
<p class="text-right"><a href="https://github.com/derekeder/csv-to-html-table">CSV to HTML Table</a> by <a href="http://derekeder.com">Derek
Eder</a></p>
</div>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.bundle.min.js"></script>
<script src="js/jquery.csv.min.js"></script>
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.19/js/dataTables.bootstrap4.min.js"></script>
<script src="js/csv_to_html_table.js"></script>
<div id="table-container"></div>
</div>
</main>
<footer class="row">
<div class="col">
<hr>
<p class="text-right"><a href="https://github.com/derekeder/csv-to-html-table">CSV to HTML Table</a> by
<a href="http://derekeder.com">Derek
Eder</a></p>
</div>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.2.1/js/bootstrap.bundle.min.js"></script>
<script src="js/jquery.csv.min.js"></script>
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.19/js/dataTables.bootstrap4.min.js"></script>
<script src="js/csv_to_html_table.js"></script>

<script>
function format_link(link) {
if (link)
return "<a href='" + link + "' target='_blank'>" + link + "</a>";
else return "";
}
<script>
function format_link(link) {
if (link)
return "<a href='" + link + "' target='_blank'>" + link + "</a>";
else return "";
}

CsvToHtmlTable.init({
csv_path: "data/Health Clinics in Chicago.csv",
element: "table-container",
allow_download: true,
csv_options: {
separator: ",",
delimiter: '"'
},
datatables_options: {
paging: false
},
custom_formatting: [
[4, format_link]
]
});
</script>
CsvToHtmlTable.init({
csv_path: "data/Health Clinics in Chicago.csv",
element: "table-container",
allow_download: true,
csv_options: {
separator: ",",
delimiter: '"'
},
datatables_options: {
paging: false
},
custom_formatting: [
[4, format_link]
]
});
</script>
</body>

</html>

0 comments on commit e085fe8

Please sign in to comment.