Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaudGLT committed Jan 2, 2025
0 parents commit 674be3e
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
72 changes: 72 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MyRepo User Manual</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #2c3e50;
color: white;
text-align: center;
padding: 20px;
margin-bottom: 20px;
}
h1 {
font-size: 2.5em;
}
ul {
list-style: none;
padding: 0;
display: flex;
justify-content: center;
gap: 30px;
}
li {
display: inline;
}
a {
text-decoration: none;
font-size: 1.2em;
color: #3498db;
padding: 10px 20px;
border-radius: 5px;
background-color: #ecf0f1;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 10px;
}
a:hover {
background-color: #3498db;
color: white;
transform: scale(1.1);
}
.flag-icon {
width: 20px;
height: 15px;
}
</style>
</head>
<body>

<header>
<h1>Koha Plugin Patron Import - Documentation</h1>
</header>

<div class="content">
<ul>
<li><a href="en/"><img src="https://upload.wikimedia.org/wikipedia/commons/a/a4/Flag_of_the_United_States.svg" alt="USA Flag" class="flag-icon"> English</a></li>
<li><a href="fr/"><img src="https://upload.wikimedia.org/wikipedia/commons/c/c3/Flag_of_France.svg" alt="France Flag" class="flag-icon"> Français</a></li>
</ul>
</div>

</body>
</html>

0 comments on commit 674be3e

Please sign in to comment.