-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
30 lines (28 loc) · 1.07 KB
/
about.html
File metadata and controls
30 lines (28 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About – Scaffolded System</title>
<link rel="stylesheet" href="scaffoldedstyles.css" />
</head>
<body>
<div id="nav-placeholder"></div>
<div class="container" style="padding: 40px; max-width: 800px; margin: 0 auto;">
<h1>About This Project</h1>
<p>
The Scaffolded System is designed to help changemakers, especially those in grassroots political and community-based movements, transform big ideas into actionable, fundable plans.
</p>
<p>
Using a "Theory of Change" approach, this tool prompts users to focus on non-action-oriented preconditions that must be true to reach their goal. It encourages thoughtful sequencing, logic modeling, and AI-powered feedback to scaffold impact-driven strategy.
</p>
</div>
<script>
fetch('nav.html')
.then(res => res.text())
.then(data => {
document.getElementById('nav-placeholder').innerHTML = data;
});
</script>
</body>
</html>