30 lines
857 B
HTML
30 lines
857 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-section 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-section header-right">
|
|
<a class="fa-regular fa-bell" href="/notifications"></a>
|
|
<a class="fa-solid fa-plus" href="/new_repo"></a>
|
|
<a href="/profile" class="profile-icon">
|
|
<img src="../images/icon2.png" alt="Profile" />
|
|
</a>
|
|
</div>
|
|
</header>
|
|
</body>
|
|
</html>
|