-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (81 loc) · 4.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>LIRNEasia · DAP Projects</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Viren Dias">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css">
<link rel="stylesheet" href="./css/app.css">
</head>
<body class="mdc-typography">
<header class="mdc-top-app-bar mdc-top-app-bar--short mdc-top-app-bar--short-collapsed mdc-top-app-bar--short-has-action-item" data-mdc-auto-init="MDCTopAppBar" style="top: 0px;">
<div class="mdc-top-app-bar__row">
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-start">
<a href="./" class="mdc-icon-button material-icons mdc-top-app-bar__navigation-icon">home</a>
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-end">
<a href="https://lirneasia.net" target="_blank" class="mdc-button mdc-button--unelevated" data-mdc-auto-init="MDCRipple">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">LIRNEasia</span>
</a>
</section>
</div>
</header>
<main>
<h1 class="mdc-typography--headline2">DAP</h1>
<ul class="card-list container">
<li class="mdc-card card">
<a href="./lacuna.html" class="mdc-card__primary-action" data-mdc-auto-init="MDCRipple" tabindex="0">
<div class="mdc-card__media mdc-card__media--16-9" style="background-image: url('./thumbnails/lacuna.png');"></div>
<div class="card-content">
<h2 class="mdc-typography--headline6">Data: Electricity consumption</h2>
<h3 class="mdc-typography--body1">
Data repository for Sri Lankan household electricity consumption with insights from over 4000 households.
</h3>
</div>
</a>
</li>
<li class="mdc-card card">
<a href="./internal-migration.html" class="mdc-card__primary-action" data-mdc-auto-init="MDCRipple" tabindex="0">
<div class="mdc-card__media mdc-card__media--16-9" style="background-image: url('./thumbnails/internal-migration.png');"></div>
<div class="card-content">
<h2 class="mdc-typography--headline6">Internal Migration</h2>
<h3 class="mdc-typography--body1">
A bivariate choropleth map of internal migration in Sri Lanka, based on 9 months of call detail records
(CDRs) from 2013.
</h3>
</div>
</a>
</li>
<li class="mdc-card card">
<a href="./socioeconomic-index.html" class="mdc-card__primary-action" data-mdc-auto-init="MDCRipple" tabindex="0">
<div class="mdc-card__media mdc-card__media--16-9" style="background-image: url('./thumbnails/socioeconomic-index.png');"></div>
<div class="card-content">
<h2 class="mdc-typography--headline6">Socioeconomic Index</h2>
<h3 class="mdc-typography--body1">
A choropleth map of socioeconomic index in Sri Lanka, based on data from the 2011/2012 national census.
</h3>
</div>
</a>
</li>
<li class="mdc-card card">
<a href="./algorithmic-bias.html" class="mdc-card__primary-action" data-mdc-auto-init="MDCRipple" tabindex="0">
<div class="mdc-card__media mdc-card__media--16-9" style="background-image: url('./thumbnails/algorithmic-bias.png');"></div>
<div class="card-content">
<h2 class="mdc-typography--headline6">Algorithmic Bias</h2>
<h3 class="mdc-typography--body1">
A series of bar charts depicting the results of the COMPAS algorithm in the US—which assigns risk scores
based on how likely a defendant will recidivate—from several different perspectives.
</h3>
</div>
</a>
</li>
</ul>
</main>
<script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
<script>
window.mdc.autoInit();
</script>
</body>
</html>