mirror of
https://github.com/isledecomp/isle.pizza.git
synced 2026-01-11 18:51:15 +00:00
Add content to Free Stuff page
This commit is contained in:
parent
e0f9453458
commit
a4e803b0f0
125
index.html
125
index.html
@ -510,6 +510,63 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.resource-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.resource-item {
|
||||
display: block;
|
||||
background-color: #1c1c1c;
|
||||
border: 1px solid #333;
|
||||
border-radius: 8px;
|
||||
padding: 20px;
|
||||
text-decoration: none;
|
||||
transition: background-color 0.2s ease, border-color 0.2s ease;
|
||||
}
|
||||
|
||||
.resource-item:hover {
|
||||
background-color: #252525;
|
||||
border-color: #555;
|
||||
}
|
||||
|
||||
.resource-item h3 {
|
||||
margin: 0 0 8px 0;
|
||||
color: #FFD700;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
.resource-item p {
|
||||
margin: 0;
|
||||
color: #b0b0b0;
|
||||
font-size: 0.9em;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.page-quote {
|
||||
padding: 15px 20px;
|
||||
margin-bottom: 25px;
|
||||
border-left: 3px solid #FFD700;
|
||||
background-color: #1c1c1c;
|
||||
border-radius: 0 8px 8px 0;
|
||||
}
|
||||
|
||||
.page-quote p {
|
||||
font-style: italic;
|
||||
color: #e0e0e0;
|
||||
margin: 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
.page-quote footer {
|
||||
text-align: right;
|
||||
margin-top: 10px;
|
||||
font-size: 0.9em;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
/* Responsive adjustments */
|
||||
@media (max-width: 768px) {
|
||||
#install-video { width: 260px; }
|
||||
@ -699,8 +756,72 @@
|
||||
<div id="free-stuff-page" class="page-content">
|
||||
<span class="page-back-button" role="button" aria-label="Go back to main menu">← Back</span>
|
||||
<div class="page-inner-content">
|
||||
<h1>Free Stuff</h1>
|
||||
<p>This section will soon have links to cool wallpapers, behind-the-scenes info, and other resources related to LEGO Island.</p>
|
||||
<div class="resource-list">
|
||||
<blockquote class="page-quote">
|
||||
<p>"In November of 2010, after all was said and done, I started getting emails from a few kids and some adults telling me how cool they thought LEGO Island was. Some people actually still play it. I was quite thrilled by these emails and actually quite honored."</p>
|
||||
<footer>- Wes Jenkins, Creative Director</footer>
|
||||
</blockquote>
|
||||
<a href="https://www.youtube.com/watch?v=bG55COe_f8I" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>The Making of LEGO Island: A Documentary</h3>
|
||||
<p>An in-depth documentary by MattKC that explores the fascinating and chaotic development story behind the classic game.</p>
|
||||
</a>
|
||||
<a href="https://www.youtube.com/watch?v=Poaxx9sMxjw" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>LEGO Island Radio 24/7</h3>
|
||||
<p>Enjoy the iconic, high-quality soundtrack of LEGO Island anytime with this continuous live stream, complete with the original DJ interludes.</p>
|
||||
</a>
|
||||
<a href="https://www.legoisland.org/" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>LEGO Island Wiki</h3>
|
||||
<p>Your ultimate resource for all things LEGO Island. This fan-run wiki contains a wealth of information, research, and details about the game.</p>
|
||||
</a>
|
||||
<a href="https://github.com/isledecomp/isle" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>LEGO Island Decompilation</h3>
|
||||
<p>The core open-source project that reverse-engineered the original game, making this web port and other mods possible. Dive into the source code here.</p>
|
||||
</a>
|
||||
<a href="https://github.com/isledecomp/isle-portable" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>LEGO Island, Portable Version</h3>
|
||||
<p>A portable, cross-platform version of the decompilation project which serves as the direct foundation for this web-based port.</p>
|
||||
</a>
|
||||
<a href="https://github.com/isledecomp/isle.pizza" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>isle.pizza Frontend</h3>
|
||||
<p>The source code for this website! A custom-built frontend for the Emscripten version of the portable decompilation project.</p>
|
||||
</a>
|
||||
<a href="https://github.com/isledecomp/LEGOIslandRebuilder" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>LEGO Island Rebuilder</h3>
|
||||
<p>A powerful launcher and tool for patching and modding the original 1997 PC version of LEGO Island. Essential for play and modding.</p>
|
||||
</a>
|
||||
<a href="https://github.com/isledecomp/SIEdit" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>SIEdit</h3>
|
||||
<p>A suite of tools developed by the decompilation team for viewing and editing the ".si" script and resource files from the original game.</p>
|
||||
</a>
|
||||
<a href="https://www.legoisland.org/wiki/The_Making_of_LEGO_Island" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>The Making of LEGO Island, a memoir by Wes Jenkins</h3>
|
||||
<p>Read the fascinating, incomplete memoir from Creative Director Wes Jenkins, detailing the development process and the team behind the game.</p>
|
||||
</a>
|
||||
<a href="/poster.pdf" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>LEGO Island: Free Poster</h3>
|
||||
<p>Download a copy of the iconic poster that was originally included with the retail release of the game.</p>
|
||||
</a>
|
||||
<a href="https://brickstobytes.org/games/lego-island" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>Development Materials Archive</h3>
|
||||
<p>Explore a collection of development materials, concept art, and other historical assets from the creation of LEGO Island.</p>
|
||||
</a>
|
||||
<a href="https://le717.github.io/LEGO-Island-VGF/legoisland/" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>Video Game Flashback: An Interview with Wes Jenkins</h3>
|
||||
<p>A detailed interview with LEGO Island's Creative Director, Wes Jenkins, offering unique insights into the game's production.</p>
|
||||
</a>
|
||||
<a href="https://www.youtube.com/watch?v=fodBG_QylVM" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>LEGO® Island - Behind the Scenes</h3>
|
||||
<p>Watch a rare promotional video created during the game's development, showcasing its progress and vision at the time.</p>
|
||||
</a>
|
||||
<a href="https://tcrf.net/LEGO_Island" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>The Cutting Room Floor</h3>
|
||||
<p>Discover unused assets, hidden data, and other secrets left in the retail version of the game. A fascinating look at what might have been.</p>
|
||||
</a>
|
||||
<a href="https://projectisland.org/music/" target="_blank" rel="noopener noreferrer" class="resource-item">
|
||||
<h3>Project Island High Quality Music</h3>
|
||||
<p>A complete, high-quality re-digitization of the LEGO Island soundtrack, restored by the game's main composer, Lorin Nelson.</p>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user