Skip to content

Commit ca390a5

Browse files
committed
Restructured assets; Implemented webp asset priority
1 parent 296e3ae commit ca390a5

14 files changed

+36
-11
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Repository Status](https://img.shields.io/badge/Repository%20Status-Maintained-dark%20green.svg)](https://github.com/AVS1508/My-Alternate-Portfolio-Website/)
44
[![Website Status](https://img.shields.io/badge/Website%20Status-Online-green)](https://people.umass.edu/avsingh)
55
[![Author](https://img.shields.io/badge/Author-Aditya%20Vikram%20Singh-blue.svg)](https://www.linkedin.com/in/AVS1508/)
6-
[![Latest Release](https://img.shields.io/badge/Latest%20Release-27%20January%202021-yellow.svg)](https://github.com/AVS1508/My-Alternate-Portfolio-Website/commit/master)
6+
[![Latest Release](https://img.shields.io/badge/Latest%20Release-13%20June%202021-yellow.svg)](https://github.com/AVS1508/My-Alternate-Portfolio-Website/commit/master)
77

88
<p align="justify">This website serves as an online portfolio to showcase my web presence, résumé, story, & featured projects with a Particle.js aligned theme. It was generated using using Jekyll, Sass, and Gulp.js.</p>
99

assets/img/.DS_Store

6 KB
Binary file not shown.

.DS_Store assets/img/jpg/.DS_Store

6 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.
42.6 KB
Binary file not shown.
37.3 KB
Binary file not shown.
41.4 KB
Binary file not shown.
13.3 KB
Binary file not shown.
41.3 KB
Binary file not shown.

index.html

+35-10
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,21 @@ <h1>
6363
<!-- User Introduction-->
6464
<div class="user-details">
6565
<h1>My Story</h1>
66-
<img
67-
src="./assets/img/Professional-Picture-Me.jpg"
68-
alt="Professional Me"
69-
width="20%"
70-
style="border-radius: 50%"
71-
/>
66+
<picture>
67+
<source
68+
type="image/webp"
69+
srcset="./assets/img/webp/Professional-Picture-Me.webp"
70+
alt="Professional Me"
71+
width="20%"
72+
style="border-radius: 50%"
73+
/>
74+
<img
75+
src="./assets/img/jpg/Professional-Picture-Me.jpg"
76+
alt="Professional Me"
77+
width="20%"
78+
style="border-radius: 50%"
79+
/>
80+
</picture>
7281
<p>
7382
I am a junior in the College of Information and Computer Sciences at the University of Massachusetts Amherst,
7483
pursuing an undergraduate degree. I am majoring in Computer Science, with intent to double major in
@@ -133,7 +142,10 @@ <h1>Featured Projects</h1>
133142
<!-- User Project #1: Personal Résumé Website -->
134143
<div class="user-projects">
135144
<div class="images-right">
136-
<img alt="Personal Website" src="./assets/img/Personal-Resume-Website.jpg" />
145+
<picture>
146+
<source type="image/webp" srcset="./assets/img/webp/Personal-Resume-Website.webp" alt="Personal Website" />
147+
<img alt="Personal Website" src="./assets/img/jpg/Personal-Resume-Website.jpg" />
148+
</picture>
137149
</div>
138150
<div class="contents" style="text-align: center">
139151
<h3>Personal Website</h3>
@@ -166,7 +178,10 @@ <h3>Personal Website</h3>
166178
<!-- User Project #2: Summer 2020 Project -->
167179
<div class="user-projects">
168180
<div class="images-left">
169-
<img alt="Perpetual Crusades" src="./assets/img/Perpetual-Crusades.jpg" />
181+
<picture>
182+
<source type="image/webp" srcset="./assets/img/webp/Perpetual-Crusades.webp" alt="Perpetual Crusades" />
183+
<img alt="Perpetual Crusades" src="./assets/img/jpg/Perpetual-Crusades.jpg" />
184+
</picture>
170185
</div>
171186
<div class="contents-right" style="text-align: center">
172187
<h3>Perpetual Crusades</h3>
@@ -199,7 +214,10 @@ <h3>Perpetual Crusades</h3>
199214
<!-- User Project #3: COVID-19 Tracker App -->
200215
<div class="user-projects">
201216
<div class="images-right">
202-
<img alt="COVID-19 Tracker App" src="./assets/img/COVID19-Tracker-App.jpg" />
217+
<picture>
218+
<source type="image/webp" srcset="./assets/img/webp/COVID19-Tracker-App.webp" alt="COVID-19 Tracker App" />
219+
<img alt="COVID-19 Tracker App" src="./assets/img/jpg/COVID19-Tracker-App.jpg" />
220+
</picture>
203221
</div>
204222
<div class="contents" style="text-align: center">
205223
<h3>COVID-19 Tracker App</h3>
@@ -225,7 +243,14 @@ <h3>COVID-19 Tracker App</h3>
225243
<!-- Use Project #4: Valuto: Account Management System -->
226244
<div class="user-projects">
227245
<div class="images-left">
228-
<img alt="Valuto: Account Management System" src="./assets/img/Valuto-Account-Management.jpg" />
246+
<picture>
247+
<source
248+
type="image/webp"
249+
srcset="./assets/img/webp/Valuto-Account-Management.webp"
250+
alt="Valuto: Account Management System"
251+
/>
252+
<img alt="Valuto: Account Management System" src="./assets/img/jpg/Valuto-Account-Management.jpg" />
253+
</picture>
229254
</div>
230255
<div class="contents-right" style="text-align: center">
231256
<h3>Valuto: Account Management System</h3>

0 commit comments

Comments
 (0)