-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (99 loc) · 3.46 KB
/
index.html
File metadata and controls
104 lines (99 loc) · 3.46 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>InsightStack</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
background-color: #ffffff;
color: #222;
margin: 0;
padding: 0;
}
header {
background: #e5f4f7;
padding: 1rem 2rem;
}
header h1 {
font-size: 2rem;
margin: 0;
}
main {
padding: 2rem;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 1rem;
margin-top: 1rem;
}
.tile {
background-color: #f8f8f8;
padding: 1rem;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.tile a {
text-decoration: none;
color: #222;
font-weight: 500;
}
.tile a:hover {
color: #007acc;
}
footer {
text-align: center;
padding: 2rem;
font-size: 0.9rem;
background-color: #f0f0f0;
margin-top: 3rem;
}
img {
border: 1px solid #ccc;
border-radius: 8px;
max-width: 1000px;
width: 100%;
margin: 1rem auto;
display: block;
}
</style>
</head>
<body>
<img src="./banner/insightstack_banner.png" alt="InsightStack Banner" />
<header>
<p>A documentation-first knowledge repository for social impact research, MEL, and data tools.</p>
</header>
<main>
<h2>📁 Key Folders</h2>
<div class="grid">
<div class="tile"><a href="observable_notebooks/">📊 Observable Notebooks</a></div>
<div class="tile"><a href="open_data_editor/">📈 Open Data Editor</a></div>
<div class="tile"><a href="taguette_coding/">🔖 Taguette Coding</a></div>
<div class="tile"><a href="visual_ethnography_descript/">🎙️ Descript Visual Ethnography</a></div>
<div class="tile"><a href="kumu_maps/">🧭 Kumu Maps</a></div>
<div class="tile"><a href="stata_snippets/">📉 Stata Snippets</a></div>
<div class="tile"><a href="excel_visuals/">📊 Excel Visuals</a></div>
<div class="tile"><a href="powerbi_reports/">📊 Power BI Reports</a></div>
<div class="tile"><a href="spss_scripts/">📊 SPSS Scripts</a></div>
<div class="tile"><a href="flourish_charts/">📈 Flourish Charts</a></div>
<div class="tile"><a href="excalidraw_frameworks/">🖍️ Excalidraw Frameworks</a></div>
<div class="tile"><a href="survey_to_codebook/">🧾 Survey to Codebook</a></div>
<div class="tile"><a href="data_validation/">🧪 Data Validation</a></div>
<div class="tile"><a href="label_variables/">🏷️ Label Variables</a></div>
<div class="tile"><a href="replication/">🔁 Replication</a></div>
<div class="tile"><a href="vensim/">🔄 Vensim Models</a></div>
</div>
<h2 style="margin-top:3rem;">📈 InsightStack Data Flow</h2>
<p>This visual shows how tools in this repository connect across the data pipeline:</p>
<img src="docs/data_flow_diagram.png" alt="InsightStack data flow diagram" />
<h2 style="margin-top:3rem;">📑 Changelog</h2>
<p>This site uses GitHub Actions to auto-update the <a href="CHANGELOG.md">changelog file</a>.</p>
</main>
<footer>
<p>© 2025 Varna Sri Raman · Built for open knowledge 🧠</p>
<p>Licensed under the <a href="LICENSE" target="_blank">MIT License</a>.</p>
</footer>
</body>
</html>