-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
162 lines (142 loc) · 6.8 KB
/
Copy pathindex.html
File metadata and controls
162 lines (142 loc) · 6.8 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!--
Portfolio Home Page
Author: Josh Lollis
Submission Date: December 3, 2024
CPSC 349 Portfolio Final Project
Landing page with personal introduction and profile information
Updated: Dec 22, 2025
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Standard meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Portfolio</title>
<!-- This style prevents flash of unstyled content (FOUC) -->
<style id="anti-fouc">html{visibility:hidden}</style>
<!-- Inject shared head links (fonts, Font Awesome, tokens, base, desktop/mobile) -->
<script src="/js/head.js"></script>
<!-- Page-specific CSS -->
<link rel="stylesheet" href="/css/components/blog-tabs.css"
media="screen and (min-width: 769px)">
</head>
<body>
<!-- Header injection point -->
<div id="header-placeholder"></div>
<main>
<div class="content-container">
<!-- Introduction section -->
<section id="intro">
<h1 class="snug-header funnel-display-header">Welcome to My
Portfolio</h1>
<!-- Status update section - restructured -->
<div id="status-container">
<div class="status-indicator-section">
<div class="status-indicator">
<i class="fas fa-circle"></i>
</div>
</div>
<div class="status-text-container">
<p id="status">Deep into a major CSS refactor. 🙏Please feel free to contact me if anything seems broken.🙏</p>
</div>
</div>
<!-- Profile picture with gradient border -->
<div id="pfp-placeholder">
<div class="pfp-border hover-scale">
<img src="./assets/images/pfp.png"
alt="Profile Picture" class="pfp">
</div>
</div>
<h2 class="intro-greeting">Hi, I'm Josh!</h2>
<div id="bio-placeholder"></div>
</section>
<!-- Project sliding tabs -->
<div class="sliding-projects">
<!-- Active Projects -->
<div class="project-tab" data-project="antillery">
<div class="tab-preview">
<img src="/assets/images/antillery/title-screen.png"
alt="Antillery">
</div>
<div class="tab-content">
<h3>Antillery</h3>
<p>A 2D turn-based artillery capstone project</p>
<span class="view-more">View Project →</span>
</div>
<a href="/projects/antillery.html"
class="project-link"></a>
</div>
<div class="project-tab" data-project="card_collection">
<div class="tab-preview">
<img src="/assets/gifs/card.gif"
alt="Card Collection">
</div>
<div class="tab-content">
<h3>Card Collection</h3>
<p>A TCG card viewer and collection application</p>
<span class="view-more">View Project →</span>
</div>
<a href="/projects/card_collection.html"
class="project-link"></a>
</div>
<div class="project-tab" data-project="snake">
<div class="tab-preview">
<img src="/assets/gifs/snake.gif" alt="Snake Game">
</div>
<div class="tab-content">
<h3>Snake</h3>
<p>A snake game with challenging new mechanics</p>
<span class="view-more">View Project →</span>
</div>
<a href="/projects/snake.html" class="project-link"></a>
</div>
<div class="project-tab" data-project="portfolio">
<div class="tab-preview">
<img src="/assets/gifs/portfolio.gif"
alt="Portfolio Website">
</div>
<div class="tab-content">
<h3>Portfolio Website</h3>
<p>This responsive developer portfolio site</p>
<span class="view-more">View Project →</span>
</div>
<a href="/projects/portfolio.html"
class="project-link"></a>
</div>
<div class="project-tab" data-project="xb2midi">
<div class="tab-preview">
<img src="/assets/images/xb2midi/basic.png"
alt="XB2MIDI">
</div>
<div class="tab-content">
<h3>XB2MIDI</h3>
<p>Map Xbox controller inputs to MIDI messages</p>
<span class="view-more">View Project →</span>
</div>
<a href="/projects/xb2midi.html"
class="project-link"></a>
</div>
</div>
</div>
<!-- Blog tabs that slide out from under the content container -->
<!-- Commented out because there is no noteable blog content -->
<!--and because the tab wasn't fully responsive to different screen sizes -->
<!-- <div class="sliding-blog-tabs">
<div class="blog-tab" data-blog="blog1">
<div class="blog-tab-preview">
<img src="/assets/gifs/ant.gif" alt="Latest Antillery Blog Post">
</div>
<div class="blog-tab-content">
<h5>Latest Blog Post</h5>
</div>
<a href="/blog/antillery/ant-dev-2025-06-02.html" class="blog-link"></a>
</div>
</div> -->
</main>
<!-- Footer injection point -->
<div id="footer-placeholder"></div>
<script src="./scripts.js"></script>
<script src="./js/ticker.js"></script>
</body>
</html>