40 lines
850 B
HTML
40 lines
850 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Documents</title>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
max-width: 600px;
|
|
margin: 5em auto;
|
|
padding: 0 1em;
|
|
background-color: #fefefe;
|
|
color: #333;
|
|
}
|
|
ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
li {
|
|
margin-bottom: 1em;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: #007acc;
|
|
font-weight: bold;
|
|
}
|
|
a:hover {
|
|
color: #005fa3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- <h1>📚 Available Documents</h1> -->
|
|
|
|
<ul>
|
|
<li>📄 <a href="ba_thesis/index.pdf" target="_blank">BA Thesis | From Panopticon to Palantír: Algorithmic Governance in the Post-Disciplinary Societies</a></li>
|
|
</ul>
|
|
</body>
|
|
</html>
|