Gitea-Theme/test/html/repo-home.html
2024-11-08 16:51:42 +05:30

37 lines
903 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Repository Home</title>
<link rel="stylesheet" href="../css/repo-home.css">
</head>
<body>
<header>
<div class="header-left">
<a href="/" class="logo">
<img src="../images/icon1.png" alt="Gitea Logo" />
</a>
<a href="/issues">Issues</a>
<a href="/pulls">Pull Requests</a>
<a href="/milestones">Milestones</a>
<a href="/explore">Explore</a>
</div>
<div class="header-right">
<a href="/notifications">
<img src="../images/notif.jpg" alt="Notifications" />
</a>
<a href="/new-repo">
<img src="../images/create.png" alt="Create Repo" />
</a>
<a href="/profile" class="profile-icon">
<img src="../images/icon2.png" alt="Profile" />
</a>
</div>
</header>
</body>
</html>