Skip to content

Commit a876bc8

Browse files
authored
Merge pull request #179 from PolicyEngine/fix-github-pages-404-clean
Add index.html to fix GitHub Pages 404 error
2 parents db4b9d8 + 0dfd4b7 commit a876bc8

2 files changed

Lines changed: 61 additions & 0 deletions

File tree

changelog_entry.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- bump: patch
2+
changes:
3+
added:
4+
- Added index.html file to docs folder to fix GitHub Pages 404 error

docs/index.html

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>PolicyEngine UK Data</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<style>
8+
body {
9+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
10+
max-width: 800px;
11+
margin: 0 auto;
12+
padding: 2rem;
13+
line-height: 1.6;
14+
color: #333;
15+
}
16+
h1 {
17+
color: #2c3e50;
18+
border-bottom: 2px solid #3498db;
19+
padding-bottom: 0.5rem;
20+
}
21+
.content {
22+
margin-top: 2rem;
23+
}
24+
.links {
25+
margin-top: 2rem;
26+
}
27+
.links a {
28+
display: inline-block;
29+
margin-right: 1rem;
30+
margin-bottom: 0.5rem;
31+
padding: 0.5rem 1rem;
32+
background-color: #3498db;
33+
color: white;
34+
text-decoration: none;
35+
border-radius: 4px;
36+
}
37+
.links a:hover {
38+
background-color: #2980b9;
39+
}
40+
</style>
41+
</head>
42+
<body>
43+
<h1>PolicyEngine UK Data</h1>
44+
45+
<div class="content">
46+
<p>Welcome to the PolicyEngine UK Data documentation and methodology site.</p>
47+
48+
<p>This site contains documentation for data sources, methodologies, and validation processes used in PolicyEngine UK.</p>
49+
50+
<div class="links">
51+
<a href="intro.html">Introduction</a>
52+
<a href="methodology.html">Methodology</a>
53+
<a href="validation/">Validation</a>
54+
</div>
55+
</div>
56+
</body>
57+
</html>

0 commit comments

Comments
 (0)