redstrate.com/themes/red/layouts/_default/ffxiv.html

103 lines
4.8 KiB
HTML
Raw Normal View History

2024-02-19 14:39:10 -05:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
2024-12-28 12:23:58 -05:00
{{ $char := index .Site.Data "character" }}
2024-10-01 20:55:14 -04:00
<div class="tabs-container">
<input type="radio" id="tab-1" name="my-tabs" checked>
2024-12-28 12:33:27 -05:00
<label for="tab-1" class="tab-label">Adventurer Plate</label>
2024-10-01 20:55:14 -04:00
<div class="container">
2024-12-28 12:33:27 -05:00
<div class="box">
<div style="width:100%; height:auto; aspect-ratio: 1.846153846153846; display: inline-block; position: relative">
2025-01-03 16:22:25 -05:00
<img style="pointer-events: none; position:absolute; left: 11%; top: 11%; width: 78%; z-index: 1" src="base-plate.png"/>
2024-12-28 12:33:27 -05:00
<img style="pointer-events: none; position:absolute; left: 10%; top: 10%; width: 80%; z-index: 2" src="pattern-overlay.png"/>
<img style="pointer-events: none; position:absolute;z-index:4; width:100%" src="plate-frame.png"/>
2025-01-03 16:25:36 -05:00
<img style="pointer-events: none; position:absolute;z-index:3; width:25%; left: 15%; top: 16%" src="plate-portrait.jpg"/>
2024-12-28 12:33:27 -05:00
<img style="pointer-events: none; position:absolute;z-index:5; width:100%; top: 0" src="top-border.png"/>
2025-01-03 16:22:25 -05:00
<div style="position: absolute; top: 11%; left: 14%; color: white; z-index: 99; line-height: 0.4">
<p style="color: cyan">{{ $char.plate_title }}</p>
2024-12-28 12:33:27 -05:00
<p>{{ $char.name }}</p>
2025-01-03 16:22:25 -05:00
</div>
<div style="position: absolute; top: 30%; left: 45%; color: black; z-index: 99">
<b>City-State</b>
<p>{{ $char.city_state }}</p>
<b>Nameday</b>
<p>{{ $char.nameday }}</p>
<b>Guardian</b>
<p>{{ $char.guardian}}</p>
2024-12-28 12:33:27 -05:00
<b>Favorite Class/Job</b>
2025-01-03 16:22:25 -05:00
<p>{{ title $char.plate_classjob }} (Level {{ $char.plate_classjob_level }})</p>
2024-12-28 12:33:27 -05:00
</div>
</div>
<p style="text-align: center">Generated by <a href="http://xiv.zone/software/auracite">Auracite</a>.</p>
2024-10-01 20:55:14 -04:00
</div>
2024-12-28 12:33:27 -05:00
</div>
2024-02-19 14:39:10 -05:00
<input type="radio" id="tab-2" name="my-tabs" onChange="relayout()">
2024-12-28 12:33:27 -05:00
<label for="tab-2" class="tab-label">Artwork</label>
<div class="container">
<div class="box">
<h2>Artwork</h2>
2024-02-23 22:35:59 -05:00
2024-12-28 12:33:27 -05:00
<p>Here's some fan art of my WoL, I want to do more general FFXIV fan art in the future too!</p>
2024-02-19 14:39:10 -05:00
2024-12-28 12:33:27 -05:00
<div style="height: 500px; overflow: auto">
{{ partial "art-section" . }}
2024-10-01 20:55:14 -04:00
</div>
2024-02-23 22:35:59 -05:00
</div>
2024-02-19 14:39:10 -05:00
</div>
2024-10-01 20:55:14 -04:00
2024-12-28 12:33:27 -05:00
<input type="radio" id="tab-3" name="my-tabs">
<label for="tab-3" class="tab-label">Mods</label>
2024-10-01 20:55:14 -04:00
<div class="container">
<div class="box">
<h2>My Mods</h2>
<p>I have created a few mods to enhance the game:</p>
<ul>
<li><a href="https://xiv.zone/mods/rebound">Rebound</a>: Somehow even after the big graphical update, Square Enix hasn't fixed the bug where certain character physics (like the Viera ear wiggle) breaks under high framerates.</li>
<li><a href="https://xiv.zone/mods/refitter">Refitter</a>: I didn't like how some armor fit on my WoL, so I fixed it myself.</li>
2025-01-01 10:04:08 -05:00
<li><a href="https://xiv.zone/mods/hooky">Hooky</a>: I find this really useful during Gold Saucer events so I can leave the game running the background.</li>
<li><a href="https://xiv.zone/mods/easyfullscreen">EasyFullscreen</a>: So I can enter and exit the game with F11.</li>
</ul>
<h2>My Tools</h2>
<p>I have created some unofficial tools for the game:</p>
<ul>
<li><a href="https://xiv.zone/astra">Astra</a>: I use this on my desktop & Steam Deck to launch the game.</li>
2025-01-03 16:22:25 -05:00
<li><a href="https://xiv.zone/novus">Novus</a>: There was no Linux solution for working with the game's data on Linux - so I created my own.</li>
<li><a href="https://auracite.xiv.zone">Auracite</a>: This grabs portable information about your WoL. I used to display my adventurer plate here!</li>
2024-10-01 20:55:14 -04:00
</ul>
</div>
2024-02-19 14:39:10 -05:00
</div>
<style>
.container {
display: flex;
column-gap: 15px;
2024-10-01 20:55:14 -04:00
width: 100%;
order: 99;
2024-02-19 14:39:10 -05:00
}
.box {
display: block;
width: 100%;
border: 1px solid gray;
padding: 5px;
}
2024-10-01 20:55:14 -04:00
.tabs-container {
display: flex;
flex-wrap: wrap;
}
.tabs-container > input[type="radio"]:not(:checked)+.tab-label+.container {
display: none;
}
2024-02-19 14:39:10 -05:00
</style>
{{ end }}