Skip to content
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
5d35207
Create CNAME
Skillter Apr 6, 2025
a361c7b
Create Serve the website
Skillter Apr 6, 2025
94ceabb
Rename Serve the website to serve-the-website.yml
Skillter Apr 6, 2025
4d90a94
Fix path to the static assets
Skillter Apr 7, 2025
91a3731
Merge branch 'main' into production
Skillter Apr 7, 2025
feb2bdb
fix the path to static content
Skillter Apr 7, 2025
b18ebd7
Revert "Merge branch 'main' into production"
Skillter Apr 7, 2025
06fe0ca
Reapply "Merge branch 'main' into production"
Skillter Apr 7, 2025
0c6f44c
Merge branch 'production' of https://github.com/Skillter/skillter.dev…
Skillter Apr 7, 2025
79eaff6
Revert "Merge branch 'main' into production"
Skillter Apr 7, 2025
2ef0aa6
Reapply "Merge branch 'main' into production"
Skillter Apr 7, 2025
548817a
Prepare for production
Skillter Apr 7, 2025
69ae0d7
remove the outdated test image of Iris
Skillter Apr 7, 2025
0082fb2
Create wrangler.jsonc
Skillter Apr 7, 2025
aa8558b
Update wrangler.jsonc
Skillter Apr 7, 2025
52ebb08
Exclude images for Clouflare page builds, since they are too big to d…
Skillter Apr 7, 2025
9144901
Fix Cloudflare page builds failing
Skillter Apr 7, 2025
c834227
Fix Cloudflare page builds failing
Skillter Apr 7, 2025
821b24a
Fix Cloudflare page builds failing
Skillter Apr 7, 2025
a1b350a
Update wrangler.jsonc
Skillter Apr 7, 2025
c7317f8
Fix Cloudflare page builds failing
Skillter Apr 7, 2025
b2ddb16
Update wrangler.jsonc
Skillter Apr 7, 2025
0f99f86
Merge branch 'main' into production
Skillter May 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@
content="Hi, I'm Skillter. I'm a driven mid-level Java programmer with 3 years of experience. I have a diverse range of interests in computer science, give me the pleasure to demonstrate it myself. This is Skillter's work-in-progress personal self-made portfolio website with projects. Check out the source code at https://github.com/Skillter/skillter.dev ">
<meta http-equiv="Permissions-Policy" content="interest-cohort=()">

<script type="text/javascript" src="https://livejs.com/live.js"></script> <!-- delete in production -->
<!-- <link rel="stylesheet" href="/css/all.purged.css"> -->
<link rel="stylesheet" href="http://localhost/css/bulma.css">
<link rel="stylesheet" href="http://localhost/css/main.css"> <!-- leave it here, what's later overwrites first ones' classes -->
<link rel="stylesheet" href="/css/bulma.css">
<link rel="stylesheet" href="/css/main.css"> <!-- leave it here, what's later overwrites first ones' classes -->

<script async defer src="http://localhost/js/particles.js" onload="particlesJS.load('particles-js', 'http://localhost/particles.json')"></script>
<script src="http://localhost/js/index.js"></script>
<script async defer src="/js/particles.js" onload="particlesJS.load('particles-js', '/particles.json')"></script>
<script src="/js/index.js"></script>

<!-- <link rel="stylesheet" href="/css/darkmode.css"> -->

Expand Down Expand Up @@ -74,7 +73,7 @@
<div id="particles-js">
<!-- <img src="/images/avatar.png" id="welcome-button" class="button" th:text="'0 ' + ${atUrl}" onload="" >Current URL</img> -->
<div id="main-profile">
<img id="avatar" class="fade" src="http://localhost/images/avatar.png" alt="Main avatar of Skillter's profile"
<img id="avatar" class="fade" src="/images/avatar.png" alt="Main avatar of Skillter's profile"
unselectable="on" onload="animateProfile()">
<div id="name" class="fade">
<h1 id="name-text">Skillter
Expand Down