This repository was archived by the owner on Sep 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (64 loc) · 2.81 KB
/
index.html
File metadata and controls
73 lines (64 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic SEO -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Simple Image Retriever – a lightweight GitHub Pages service for retrieving stored images at edge.">
<meta name="keywords" content="image retriever, GitHub Pages, image hosting, static assets, fetch images">
<meta name="author" content="AARUSH MASTER">
<link rel="canonical" href="https://aarush0101.github.io/assets/">
<!-- Favicon -->
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<!-- Google Font: Rubik -->
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="style.css">
<title>Simple Image Retriever | Fast GitHub Pages Image Hosting</title>
</head>
<body>
<header>
<h1>Simple Image Retriever</h1>
<p class="tagline">Fast, lightweight, and reliable image retrieval directly from GitHub Pages.</p>
</header>
<main>
<section>
<h2>About This Project</h2>
<p>
Simple Image Retriever is a minimal GitHub Pages site built for fetching and serving stored images
at edge. Whether you need quick access to assets or lightweight hosting, this solution delivers.
</p>
</section>
<section>
<h2>How It Works</h2>
<p>
To access an image, simply visit:
</p>
<code>/imgs/{image_name}</code>
<p>
Replace <code>{image_name}</code> with the actual file name of the image stored in the repository.
</p>
</section>
<section>
<h2>Need Help?</h2>
<p>
For inquiries, support, or contributions, please contact me by
<a href="https://github.com/aarush0101" target="_blank">my GitHub</a>.
</p>
</section>
</main>
<footer>
<p class="consent">
Consent Notice:
Images made available here are provided solely for access via this service.
Reproduction, redistribution, adaptation, reinterpretation, or any other form of use—whether commercial, private, educational, derivative, or otherwise—should not be assumed as permitted, except where explicitly clarified in writing.
By accessing, you acknowledge and accept these terms in their broadest possible sense.
</p>
<p class="credits">© <span id="year"></span> AARUSH MASTER. All rights reserved.</p>
</footer>
<script>
// Auto-update footer year
document.getElementById("year").textContent = new Date().getFullYear();
</script>
</body>
</html>