Fix icon path in index.html and update .gitignore to include extra copies rustframe_logo.png

This commit is contained in:
Palash Tyagi 2025-05-05 23:27:18 +01:00
parent b3b0e5e3ae
commit bca1121004
2 changed files with 5 additions and 3 deletions

View File

@ -5,7 +5,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rustframe</title> <title>Rustframe</title>
<link rel="icon" type="image/png" href="../rustframe_logo.png"> <link rel="icon" type="image/png" href="./rustframe_logo.png">
<style> <style>
body { body {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
@ -52,7 +52,7 @@
<body> <body>
<main> <main>
<h1> <h1>
<img src="../rustframe_logo.png" alt="Rustframe Logo"><br> <img src="./rustframe_logo.png" alt="Rustframe Logo"><br>
Rustframe Rustframe
</h1> </h1>
<h2>A lightweight dataframe & math toolkit for Rust</h2> <h2>A lightweight dataframe & math toolkit for Rust</h2>

2
.gitignore vendored
View File

@ -15,3 +15,5 @@ data/
.vscode/ .vscode/
tarpaulin-report.* tarpaulin-report.*
.github/htmldocs/rustframe_logo.png