Spaces:
Running
Running
File size: 3,960 Bytes
53873ca |
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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Website Link Validator</title>
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<style>
:root {
--success: #10b981;
--warning: #f59e0b;
--error: #ef4444;
--info: #3b82f6;
}
body {
font-family: system-ui, -apple-system, sans-serif;
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
background: #f8fafc;
}
.status-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1rem;
margin: 2rem 0;
}
.status-card {
padding: 1.5rem;
border-radius: 0.5rem;
background: white;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.status-success { border-left: 4px solid var(--success); }
.status-warning { border-left: 4px solid var(--warning); }
.status-error { border-left: 4px solid var(--error); }
.status-info { border-left: 4px solid var(--info); }
.link-list {
margin-top: 2rem;
}
.link-item {
padding: 1rem;
border-radius: 0.5rem;
margin-bottom: 0.5rem;
background: #f8fafc;
}
.link-status {
display: inline-block;
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
font-size: 0.875rem;
font-weight: 500;
}
.status-ok { background: #dcfce7; color: #166534; }
.status-broken { background: #fee2e2; color: #991b1b; }
.mermaid {
margin: 2rem 0;
padding: 1rem;
background: white;
border-radius: 0.5rem;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<h1>Website Link Validator</h1>
<div class="status-grid">
<div class="status-card status-info">
<h3>Total Links</h3>
<div class="mermaid">
pie
title Link Distribution
"Working" : 85
"Redirects" : 10
"Broken" : 5
</div>
</div>
<div class="status-card status-warning">
<h3>Critical Paths</h3>
<div class="mermaid">
graph TD
A[Home] --> B[Projects]
B --> C[AutoMedical]
A --> D[Papers]
D --> E[Current Research]
A --> F[Proposals]
F --> G[NHS]
classDef default fill:#f9f9f9,stroke:#333,stroke-width:2px;
classDef critical fill:#fee2e2,stroke:#991b1b,stroke-width:2px;
</div>
</div>
</div>
<div class="link-list">
<h2>Link Status</h2>
<div class="link-item">
<span class="link-status status-ok">β</span>
<span>/</span> β Home
</div>
<div class="link-item">
<span class="link-status status-ok">β</span>
<span>/projects</span> β Projects
</div>
<div class="link-item">
<span class="link-status status-ok">β</span>
<span>/papers</span> β Papers
</div>
<div class="link-item">
<span class="link-status status-ok">β</span>
<span>/proposals</span> β Proposals
</div>
<div class="link-item">
<span class="link-status status-ok">β</span>
<span>/docs</span> β Documentation
</div>
</div>
<script>
mermaid.initialize({
startOnLoad: true,
theme: 'neutral',
securityLevel: 'loose',
});
</script>
</body>
</html> |