-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathother.html
131 lines (113 loc) · 5.34 KB
/
other.html
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Delichan</title>
<link rel="shortcut icon" href="media/images/transparent/icons/favicon-mascot.png">
<!-- Stylesheet -->
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/utility.css">
<link rel="stylesheet" href="styles/gallery.css">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/bb83019d49.js" crossorigin="anonymous"></script>
<!-- Primary Meta Tags -->
<meta name="title" content="Delichan">
<meta name="description" content="Hi, I'm Delichan~ but you can call me Deli-!!! I'm a full-time freelance graphic designer. I'll assist you in your project ">
</head>
<body>
<div id="credits">
<p>Website Design by <a target="_blank" href="https://twitter.com/Shubamium2"> <i class="fa-brands fa-github"></i> Shubamium</a></p>
</div>
<div id="container_main">
<!-- Header -->
<header id="header">
<!-- Background -->
<div id="header_bg">
<video src="https://ik.imagekit.io/gbxp1jibv/delichan_bg_new.webm" loop muted autoplay id="bg-vid" poster="media/images/bg_placeholder.png"></video>
<!-- Autoplay scripts -->
<script>
let bg = document.getElementById('bg-vid');
document.addEventListener('click',()=>{
if(bg.paused){
bg.play();
}
});
</script>
</div>
<div class="confine mx-auto header_content">
<!-- Main Logo -->
<img src="media/images/transparent/logo_main.png" alt="Delichan Main logo" class="header_logo glow flicker-slow">
<!-- Subtitle -->
<div class="subtitle">
<div class="subtitle_title">
<div class="line glow-md"></div>
<p class="f-future">✦ vtuber & vartist ✦</p>
<div class="line glow-md"></div>
</div>
<p class="subtitle_text">
Hi, I'm Delichan but you can call me Deli-!!! <br>
I'm a full-time freelance graphic designer. I'll assist you in your project <span class="flower">🌻</span>
</p>
</div>
<!-- Info List -->
<div class="header_info">
<ul>
<li>♡ delilah</li>
<li>♡ she/her</li>
<li>♡ 158cm</li>
<li>♡ 09/07(Cancer♋)</li>
</ul>
</div>
<!-- Navigation -->
<nav id="navigation">
<ul class="nav">
<li><a href="index.html" class="glow-sm">Home</a></li>
<li><a href="about.html" class="glow-sm">About</a></li>
<li><a href="portfolio.html" class="glow-sm">Portfolio</a></li>
<li><a href="https://trello.com/b/SfPIF9sK/delichan-waitlist" target="_blank " class="glow-sm">Waitlist</a></li>
<li><a href="terms.html" class="glow-sm">Terms</a></li>
<li><a href="pricing.html" class="glow-sm">Pricing</a></li>
</ul>
</nav>
</div>
</header>
<!-- Page Content -->
<main>
<section class="section">
<!-- Ear Decoration -->
<div class="decor_ears">
<div class="left"><img src="media/images/transparent/decor/ear_fill.png" class="trans-glow-sm"></div>
<div class="right"><img src="media/images/transparent/decor/ear_empty.png" class="trans-glow-sm"></div>
</div>
<!-- Section Title -->
<div class="section_header">
<div class="line"></div>
<h2 class="f-future text-glow-md" id="page-title">
Gallery
</h2>
<div class="line"></div>
</div>
<div class="confine mx-auto">
<!-- Gallery -->
<div id="gallery">
</div>
<button class="btn link" onclick="history.back()"><a href="portfolio.html"><i class="fa-solid fa-arrow-left"></i>Go Back!</a></button>
</div>
<!-- Gallery Script -->
<script type="module">
import showPortfolio from './scripts/portfolio_handler.js';
// Change what to display here!
const toDisplay = "other";
document.getElementById('page-title').textContent = toDisplay;
let displayEl = document.getElementById('gallery');
// Display the gallery
showPortfolio(toDisplay,displayEl);
</script>
</section>
</main>
</div>
</body>
</html>