upsc_ca_tracker / templates /bilateral_documents.html
Hemann's picture
Upload 13 files
845c792 verified
Raw
History Blame Contribute Delete
2.24 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MEA Bilateral Documents</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f4f4f4;
}
h1 {
color: #0056b3;
text-align: center;
border-bottom: 2px solid #0056b3;
padding-bottom: 10px;
}
.document-list {
list-style-type: none;
padding: 0;
}
.document-item {
background-color: #fff;
margin-bottom: 20px;
padding: 15px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
transition: transform 0.3s ease-in-out;
}
.document-item:hover {
transform: translateY(-5px);
}
.document-title {
font-size: 18px;
color: #0056b3;
margin-bottom: 10px;
}
.document-title a {
text-decoration: none;
color: inherit;
}
.document-title a:hover {
text-decoration: underline;
}
.document-date {
font-size: 14px;
color: #666;
}
.document-date::before {
content: "\f073";
font-family: "Font Awesome 5 Free";
font-weight: 900;
margin-right: 5px;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<h1>MEA Bilateral Documents</h1>
<ul class="document-list">
{% for document in documents %}
<li class="document-item">
<div class="document-title">
<a href="{{ document.url }}">{{ document.title }}</a>
</div>
<div class="document-date">{{ document.date }}</div>
</li>
{% endfor %}
</ul>
</body>
</html>