-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (52 loc) · 2.13 KB
/
index.html
File metadata and controls
64 lines (52 loc) · 2.13 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
---
layout: none
title: Shop
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ site.title }}</title>
<!-- Bulma with local fallback -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css"
data-fallback="{{ '/assets/css/bulma.min.css' | relative_url }}"
onerror="this.onerror=null;this.href=this.dataset.fallback">
<!-- ✅ Favicon (Jekyll-relative path) -->
<link rel="icon" href="{{ '/assets/favicon.ico' | relative_url }}" type="image/x-icon">
<link rel="shortcut icon" href="{{ '/assets/favicon.ico' | relative_url }}" type="image/x-icon">
</head>
<body>
<section class="hero is-secondary is-fullheight">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title">Welcome to Halangdon’s GitHub Pages Demo</h1>
<p class="subtitle">A showcase of HTML, CSS (Bulma), and responsive design</p>
<a href="shop/" class="button is-light is-large mt-5">🛒 Visit Shop Demo</a>
</div>
</div>
</section>
<nav class="level has-background-info p-6">
<p class="level-item has-text-centered">
<a class="link is-info" href="https://docs.google.com/spreadsheets/d/e/2PACX-1vRfxQ4ysXu85ctEiYhWqQ0k2vIYQWX4Vp69knp6pW6AuyV8XAFO---94NCp3gR0F5G2LnIbquTCL7Rg/pubhtml" target="_blank">SCHOOL SCHEDULE</a>
</p>
<p class="level-item has-text-centered has-text-weight-bold">
<a href="//junlee.ovh" target="_blank"><span class="tag is-white is-large">JUNLEE.OVH</span></a>
</p>
<!-- <p class="level-item has-text-centered">
<img src="https://bulma.io/assets/images/bulma-type.png" alt="" style="height: 30px" />
</p> -->
<!-- <p class="level-item has-text-centered">
<a class="link is-info">Reservations</a>
</p>
<p class="level-item has-text-centered">
<a class="link is-info">Contact</a>
</p> -->
</nav>
<footer class="footer">
<div class="content has-text-centered">
<p>Built with ❤️ using <a href="https://bulma.io">Bulma CSS</a></p>
</div>
</footer>
</body>
</html>