Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
1 change: 1 addition & 0 deletions Website/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ server/node_modules
node_modules
server/.env
.env
.vercel
2 changes: 1 addition & 1 deletion Website/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/>
<title>About | Machine Learning Repositories</title>
<!-- <link rel="canonical" href="url-here" /> define base(root) link of deployment here -->
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="icon" href="/assets/recode-hive.png" type="image/png" />
<!-- Added favicon -->
<link
Expand Down
2 changes: 1 addition & 1 deletion Website/conduct.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="css/styles.css" />
<title>Code of Conduct</title>
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion Website/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="contact.css">
<link rel="stylesheet" href="css/contact.css" />
</head>
<body>

Expand Down
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions Website/styles.css → Website/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,9 @@ p {
line-height: 1.6;
color:white;
}
.dark-mode p {
color:black;
}

button#toggle-stats {
display: block;
Expand Down
8 changes: 4 additions & 4 deletions Website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
content="A curated collection of diverse machine learning repositories available on GitHub, presented by the RecodeHive community" />
<title>Machine Learning Repositories</title>
<!-- <link rel="canonical" href="url-here" /> define base(root) link of deployment here -->
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="css/styles.css" />
<link rel="icon" href="/assets/recode-hive.png" type="image/png"> <!-- Added favicon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
Expand Down Expand Up @@ -74,17 +74,17 @@
<li><a href="/about">About</a></li>

<li><a href="https://recodehive.github.io/awesome-github-profiles/pages/blog.html">Learn</a></li>
<li><a href="organization.html">Organization</a></li>
<li><a href="organization">Organization</a></li>
<li><a href="/faq">FAQ</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="contact">Contact</a></li>
<!-- Dropdown on navbar -->
<li class="dropdown">
<button id="dropdownButton" class="dropbtn">Know More</button>
<div id="dropdownMenu" class="dropdown-content">
<a href="/how-we-work">How we work?</a>
<a href="/projects">Projects</a>
<a href="/team">Team</a>
<a href="conduct.html">Code of Conduct</a>
<a href="conduct">Code of Conduct</a>
</div>
</li>
<div class="nav-icons">
Expand Down
2 changes: 1 addition & 1 deletion Website/models.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Models</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="css/styles.css" />
<link rel="icon" href="/assets/recode-hive.png" type="image/png"> <!-- Added favicon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
Expand Down
4 changes: 2 additions & 2 deletions Website/organization.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Organization | Recode Hive</title>
<link rel="icon" href="/assets/recode-hive.png" type="image/png">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="org.css">
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/Org.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
Expand Down
Loading
Loading