2024-02-19 14:39:10 -05:00
{{ define "main" }}
< h2 > {{ .Title }}< / h2 >
< hr >
2024-10-01 20:55:14 -04:00
< div class = "tabs-container" >
< input type = "radio" id = "tab-1" name = "my-tabs" checked >
< label for = "tab-1" class = "tab-label" > Warrior of Light< / label >
< div class = "container" >
< div class = "box" style = "width: 50%" >
< h2 > Character< / h2 >
2024-02-19 14:39:10 -05:00
2024-10-01 20:55:14 -04:00
< p > Here's my WoL, and she's stayed consistent shortly after I purchased Shadowbringers.< / p >
2024-02-23 22:35:59 -05:00
2024-10-01 20:55:14 -04:00
< img style = "display: block; margin-left: auto; margin-right: auto;margin-bottom:10px;width:50%" src = "char.jpg" / >
2024-02-19 14:39:10 -05:00
2024-10-01 20:55:14 -04:00
< table >
< tr >
< th > Gender< / th >
< td > Female♀< / td >
< / tr >
< tr >
< th > Race< / th >
< td > Viera/Veena< / td >
< / tr >
< tr >
< th > Height< / th >
< td > 6' 3" (191 cm)< / td >
< / tr >
< tr >
< th > Nameday< / th >
< td > 14th Sun of the 4th Umbral Moon< / td >
< / tr >
< tr >
< th > City-state< / th >
< td > Gridania< / td >
< / tr >
< tr >
< th > Guardian Deity< / th >
< td > Nophica< / td >
< / tr >
< / table >
< / div >
2024-02-19 14:39:10 -05:00
2024-10-01 20:55:14 -04:00
< div style = "width: 50%" >
< div class = "box" style = "height: 600px" >
< h2 > Artwork< / h2 >
2024-02-23 22:35:59 -05:00
2024-10-01 20:55:14 -04: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-23 22:35:59 -05:00
2024-10-01 20:55:14 -04:00
< div style = "height: 500px; overflow: auto" >
{{ partial "art-section" . }}
< / div >
2024-02-19 14:39:10 -05:00
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
< input type = "radio" id = "tab-2" name = "my-tabs" >
< label for = "tab-2" class = "tab-label" > Mods< / label >
< 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 >
< li > < a href = "https://xiv.zone/mods/hooky" > Hooky< / a > : I don't use this too much yet, but I really liked making it!< / li >
< / 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 }}