mirror of
https://github.com/RetroDECK/RetroDECK-Website.git
synced 2024-11-21 14:35:38 +00:00
New theme matching ES_DE theme
This commit is contained in:
parent
ee309a2f8a
commit
ae8f5cbc8c
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,3 @@
|
||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
assets/.DS_Store
|
assets/.DS_Store
|
BIN
assets/.DS_Store
vendored
BIN
assets/.DS_Store
vendored
Binary file not shown.
|
@ -1,9 +1,83 @@
|
||||||
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
|
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
|
||||||
|
@font-face {
|
||||||
body {
|
font-family: "Upheaval TT";
|
||||||
background: #222;
|
src: url("../assets/fonts/upheavtt.ttf");
|
||||||
|
}
|
||||||
|
@font-face {
|
||||||
|
font-family: "Exo";
|
||||||
|
src: url("../assets/fonts/exo.otf");
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar {
|
:root {
|
||||||
background: #1a9fff;
|
--rd-purple: #946beb;
|
||||||
|
--rd-blue: #1a9fff;
|
||||||
|
--rd-black: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: var(--rd-black);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Nav and Footer Styles */
|
||||||
|
|
||||||
|
nav, footer {
|
||||||
|
background: var(--rd-blue);
|
||||||
|
font-family: "Upheaval TT", monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav {
|
||||||
|
border-bottom: var(--rd-purple) solid 5px;
|
||||||
|
font-size: x-large;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav i.bi {
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
border-top: var(--rd-purple) solid 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown-menu.show {
|
||||||
|
background: var(--rd-purple);
|
||||||
|
/* background: linear-gradient(45deg, #1a9fff, #946beb); */
|
||||||
|
border: white solid 1px;
|
||||||
|
font-size: large;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.dropdown-item:hover {
|
||||||
|
background: var(--rd-blue);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Jumbotron Styles */
|
||||||
|
.jumbotron {
|
||||||
|
background: linear-gradient(45deg, var(--rd-purple) 30%, var(--rd-blue));
|
||||||
|
border: white 2px solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
.jumbotron h1 {
|
||||||
|
font-family: "Upheaval TT", monospace;
|
||||||
|
text-shadow: 2px 2px var(--rd-purple);
|
||||||
|
}
|
||||||
|
|
||||||
|
.jumbotron p {
|
||||||
|
font-family: "Exo", serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Link Styles */
|
||||||
|
.jumbotron p a, footer a, a.btn {
|
||||||
|
color: var(--rd-purple);
|
||||||
|
background: var(--rd-black);
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 5px;
|
||||||
|
border: white 1px solid;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-family: "Upheaval TT", monospace;
|
||||||
|
}
|
||||||
|
|
||||||
|
.jumbotron p a:hover, footer a:hover, a.btn:hover {
|
||||||
|
color: white;
|
||||||
|
background: var(--rd-purple);
|
||||||
|
border-color: var(--rd-black);
|
||||||
}
|
}
|
341
index.html
341
index.html
|
@ -31,8 +31,8 @@
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<!-- Navbar -->
|
<!-- Navbar -->
|
||||||
<nav class="navbar navbar-expand-lg bg-dark sticky-top" data-bs-theme="dark">
|
<nav class="navbar navbar-expand-lg sticky-top">
|
||||||
<div class=" container">
|
<div class="container large">
|
||||||
<a class="navbar-brand" href="index.html">
|
<a class="navbar-brand" href="index.html">
|
||||||
<img src="assets/icons/squircle-icon.svg" height="40">
|
<img src="assets/icons/squircle-icon.svg" height="40">
|
||||||
</a>
|
</a>
|
||||||
|
@ -54,9 +54,9 @@
|
||||||
href="https://retrodeck.readthedocs.io/en/latest/blog/">Blog</a>
|
href="https://retrodeck.readthedocs.io/en/latest/blog/">Blog</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item dropdown">
|
<li class="nav-item dropdown">
|
||||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
|
<a class="nav-link" href="#" role="button" data-bs-toggle="dropdown"
|
||||||
aria-expanded="false">
|
aria-expanded="false">
|
||||||
Social
|
Social <i class="bi bi-caret-down-square-fill"></i>
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li><a class="dropdown-item" target="_blank" rel="noopener noreferrer"
|
<li><a class="dropdown-item" target="_blank" rel="noopener noreferrer"
|
||||||
|
@ -70,9 +70,9 @@
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item dropdown">
|
<li class="nav-item dropdown">
|
||||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
|
<a class="nav-link" href="#" role="button" data-bs-toggle="dropdown"
|
||||||
aria-expanded="false">
|
aria-expanded="false">
|
||||||
Source Code
|
Source Code <i class="bi bi-caret-down-square-fill"></i>
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li>
|
<li>
|
||||||
|
@ -102,337 +102,56 @@
|
||||||
<!-- End Navbar -->
|
<!-- End Navbar -->
|
||||||
|
|
||||||
<!-- Main Content -->
|
<!-- Main Content -->
|
||||||
<main class="container mt-4 mb-4">
|
<main class="container mt-4">
|
||||||
|
|
||||||
<!-- <div class="row">
|
|
||||||
<div class="col" id="big-logo">
|
|
||||||
<img class="img-fluid p-4" src="assets/logos/logo_unstacked.svg">
|
|
||||||
</div>
|
|
||||||
</div> -->
|
|
||||||
|
|
||||||
<!-- Lead Jumbotron -->
|
<!-- Lead Jumbotron -->
|
||||||
<div class="p-2 mb-4 bg-body-tertiary rounded-3 jumbotron my-gradient gradient-spin">
|
<div class="p-2 mb-4 bg-body-tertiary rounded-3 jumbotron my-gradient gradient-spin">
|
||||||
<div class="container-fluid py-3 py-md-5">
|
<div class="container-fluid py-5">
|
||||||
<div class="row align-items-center">
|
<div class="row align-items-center">
|
||||||
<div class="col-md-8">
|
<div class="col-md-8">
|
||||||
<h1 class="display-md-5 fw-bold">Your all-in-one emulation package for the Steam Deck</h1>
|
<h1 class="display-md-5 jumbo-header">Your all-in-one emulation package for the Steam Deck</h1>
|
||||||
<p class="fs-md-4">
|
|
||||||
Powered by <a target="_blank" rel="noopener noreferrer" href="https://es-de.org/">ES-DE</a>,
|
|
||||||
RetroDECK combines all of the best open-source emulators into a single application.
|
|
||||||
Pair that with a best-in-class Steam Deck controller configuration, and you'll be in retro
|
|
||||||
gaming
|
|
||||||
paradise.</a>
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Flathub Link -->
|
||||||
<div class="col-md-4 text-center">
|
<div class="col-md-4 text-center">
|
||||||
<a type="button" class="btn btn-dark align-center" target="_blank" rel="noopener noreferrer"
|
<a type="button" class="btn btn-dark align-center p-2" target="_blank" rel="noopener noreferrer"
|
||||||
href="https://flathub.org/apps/details/net.retrodeck.retrodeck">
|
href="https://flathub.org/apps/details/net.retrodeck.retrodeck">
|
||||||
<img class="pe-2" src="assets/logos/flathub.svg" width="32" height="32">Download on Flathub
|
Download on Flathub
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- End Flathub Link -->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Content -->
|
||||||
|
<div class="row">
|
||||||
|
<p class="fs-md-4">
|
||||||
|
Powered by <a target="_blank" rel="noopener noreferrer" href="https://es-de.org/">ES-DE</a>,
|
||||||
|
RetroDECK combines all of the best open-source emulators into a single application.
|
||||||
|
Pair that with a best-in-class Steam Deck controller configuration, and you'll be in retro
|
||||||
|
gaming
|
||||||
|
paradise.</a>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- End Jumbotron -->
|
<!-- End Jumbotron -->
|
||||||
|
|
||||||
<!-- Screenshot Carousel -->
|
|
||||||
<div class="row">
|
|
||||||
<div class="col">
|
|
||||||
<div id="screenshotCarousel" class="carousel carousel-fade slide mb-4 position-relative"
|
|
||||||
data-bs-ride="carousel">
|
|
||||||
<div class="carousel-inner" id="deck-carousel">
|
|
||||||
<div class="carousel-item active">
|
|
||||||
<img src="assets/screens/small/screen01.png" class="d-block w-100 rounded-3"
|
|
||||||
alt="The RetroDECK logo displayed on a Steam Deck">
|
|
||||||
</div>
|
|
||||||
<div class="carousel-item">
|
|
||||||
<img src="assets/screens/small/screen02.png" class="d-block w-100 rounded-3"
|
|
||||||
alt="The RetroDECK icon visible in a Steam Library">
|
|
||||||
</div>
|
|
||||||
<div class="carousel-item">
|
|
||||||
<img src="assets/screens/small/screen03.png" class="d-block w-100 rounded-3"
|
|
||||||
alt="Steam Deck quick settings in the foreground with the RetroDECK interface behind it">
|
|
||||||
</div>
|
|
||||||
<div class="carousel-item">
|
|
||||||
<img src="assets/screens/small/screen04.png" class="d-block w-100 rounded-3"
|
|
||||||
alt="One of the ES-DE Themes with SEGA Genesis visible">
|
|
||||||
</div>
|
|
||||||
<div class="carousel-item">
|
|
||||||
<img src="assets/screens/small/screen05.png" class="d-block w-100 rounded-3"
|
|
||||||
alt="Sonic the Hedgehog 2 (SEGA Genesis) on the Steam Deck">
|
|
||||||
</div>
|
|
||||||
<div class="carousel-item">
|
|
||||||
<img src="assets/screens/small/screen06.png" class="d-block w-100 rounded-3"
|
|
||||||
alt="A list of TurboGrafx games in the ES-DE frontend">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<img class="img-fluid mb-4 rounded-3" id="screen-blank" src="assets/screens/small/blank.png">
|
|
||||||
|
|
||||||
<button class="carousel-control-prev z-2" type="button" data-bs-target="#screenshotCarousel"
|
|
||||||
data-bs-slide="prev">
|
|
||||||
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
|
||||||
<span class="visually-hidden">Previous</span>
|
|
||||||
</button>
|
|
||||||
<button class="carousel-control-next z-2" type="button" data-bs-target="#screenshotCarousel"
|
|
||||||
data-bs-slide="next">
|
|
||||||
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
|
||||||
<span class="visually-hidden">Next</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- End Carousel -->
|
|
||||||
|
|
||||||
<!-- Feature Section -->
|
|
||||||
<div id="feature-anchor"></div>
|
|
||||||
<div class="p-2 mb-4 bg-body-tertiary rounded-3 jumbotron my-gradient gradient-spin">
|
|
||||||
<div class="container-fluid py-3 py-md-5">
|
|
||||||
<div class="row align-items-center">
|
|
||||||
<div class="col-md-8">
|
|
||||||
<h1 class="display-md-5 fw-bold">It's dangerous to go alone! Take these.</h1>
|
|
||||||
<p class="fs-md-4">
|
|
||||||
With more features than you can count, RetroDECK has you covered.
|
|
||||||
We're adding more with every release, so be sure to check out the Wiki for the latest
|
|
||||||
updates.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-4 text-center">
|
|
||||||
<a class="btn btn-dark btn-lg align-center" type="button" target="_blank"
|
|
||||||
rel="noopener noreferrer" href="https://retrodeck.readthedocs.io/en/latest/">
|
|
||||||
<i class="bi bi-mortarboard pe-2"></i>Full Documentation
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="p-md-2 p-1 mb-4 rounded-3 jumbotron" id="feature-section">
|
|
||||||
<div class="container-fluid">
|
|
||||||
|
|
||||||
<!-- Theme based on https://github.com/anthonycaccese/art-book-next-es-de-->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Features -->
|
|
||||||
<div class="row">
|
|
||||||
<!-- Left Column -->
|
|
||||||
<div class="col-md-4" id="left-feature-column">
|
|
||||||
|
|
||||||
<!-- Logo Header -->
|
|
||||||
<!-- <div class="row p-3 rounded-3 d-none d-md-block" id="feature-logo-container">
|
|
||||||
<div class="col">
|
|
||||||
<img class="img-fluid" src="assets/logos/logo_stacked_esde.png">
|
|
||||||
</div>
|
|
||||||
</div> -->
|
|
||||||
|
|
||||||
<!-- Feature List -->
|
|
||||||
<div class="h5 row d-flex flex-md-column align-items-center overflow-x-scroll text-end flex-nowrap" id="feature-list">
|
|
||||||
<!-- Feature 1 -->
|
|
||||||
<div class="col feature-list-item gradient-spin my-gradient rounded-3 m-0"
|
|
||||||
id="active-feature-item">
|
|
||||||
Pick Up and Play
|
|
||||||
</div>
|
|
||||||
<!-- Feature 2 -->
|
|
||||||
<div class="col feature-list-item gradient-spin my-gradient rounded-3 m-0" id="">
|
|
||||||
Rich Metadata & Cover Art
|
|
||||||
</div>
|
|
||||||
<!-- Feature 3 -->
|
|
||||||
<div class="col feature-list-item gradient-spin my-gradient rounded-3 m-0" id="">
|
|
||||||
Custom Radial Menu
|
|
||||||
</div>
|
|
||||||
<!-- Feature 4 -->
|
|
||||||
<div class="col feature-list-item gradient-spin my-gradient rounded-3 m-0" id="">
|
|
||||||
External Controller Support
|
|
||||||
</div>
|
|
||||||
<!-- Feature 5 -->
|
|
||||||
<div class="col feature-list-item gradient-spin my-gradient rounded-3 m-0" id="">
|
|
||||||
Portable Installation
|
|
||||||
</div>
|
|
||||||
<!-- Feature 6 -->
|
|
||||||
<div class="col feature-list-item gradient-spin my-gradient rounded-3 m-0" id="">
|
|
||||||
RetroAchievement Support
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- End Left Column -->
|
|
||||||
|
|
||||||
<!-- Right Column -->
|
|
||||||
<div class="col-md-8 p-0 ps-md-3" id="feature-detail-column">
|
|
||||||
<div class="my-gradient gradient-spin rounded-3 h-100 pt-0 pt-sm-auto">
|
|
||||||
<!-- Feature 1 -->
|
|
||||||
<div class="feature-detail-container rounded-3 p-3" id="active-feature-detail">
|
|
||||||
<!-- Image/Video Container -->
|
|
||||||
<div class="row" id="feature-media-container">
|
|
||||||
<div class="col">
|
|
||||||
<img class="img-fluid rounded-3" src="assets/screens/small/screen01.png">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Feature Detail Container -->
|
|
||||||
<div class="row py-2 rounded-3 feature-text-container">
|
|
||||||
<div class="col">
|
|
||||||
<h4>Don't waste time on setup</h4>
|
|
||||||
Once installed, you can start playing with RetroDECK immediately.
|
|
||||||
No setup wizards or configuration needed (although you can get into the weeds if you want).
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Feature 2 -->
|
|
||||||
<div class="feature-detail-container rounded-3 p-3" id="">
|
|
||||||
<!-- Image/Video Container -->
|
|
||||||
<div class="row" id="feature-media-container">
|
|
||||||
<div class="col">
|
|
||||||
<img class="img-fluid rounded-3" src="assets/screens/small/screen02.png">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Feature Detail Container -->
|
|
||||||
<div class="row py-2 rounded-3 feature-text-container">
|
|
||||||
<div class="col">
|
|
||||||
<h4>Browse your games in style</h4>
|
|
||||||
Because RetroDECK is built on top of EmulationStation-DE, your game library will be matched
|
|
||||||
by ScreenScraper and TheGamesDB. Metadata like cover art, release dates, and summaries will
|
|
||||||
be automatically downloaded.
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Feature 3 -->
|
|
||||||
<div class="feature-detail-container rounded-3 p-3" id="">
|
|
||||||
<!-- Image/Video Container -->
|
|
||||||
<div class="row" id="feature-media-container">
|
|
||||||
<div class="col">
|
|
||||||
<img class="img-fluid rounded-3" src="assets/screens/small/screen03.png">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Feature Detail Container -->
|
|
||||||
<div class="row py-2 rounded-3 feature-text-container">
|
|
||||||
<div class="col">
|
|
||||||
<h4>Access emulator settings without breaking your flow</h4>
|
|
||||||
The custom RetroDECK controller profile makes use of the left touch pad on your Steam Deck.
|
|
||||||
Just touch it, and a radial menu will appear. Menus are tailored to your current emulator and
|
|
||||||
include features such as save/load state, upscaling, and more.
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Feature 4 -->
|
|
||||||
<div class="feature-detail-container rounded-3 p-3" id="">
|
|
||||||
<!-- Image/Video Container -->
|
|
||||||
<div class="row" id="feature-media-container">
|
|
||||||
<div class="col">
|
|
||||||
<img class="img-fluid rounded-3" src="assets/screens/small/screen04.png">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Feature Detail Container -->
|
|
||||||
<div class="row py-2 rounded-3 feature-text-container">
|
|
||||||
<div class="col">
|
|
||||||
<h4>Use your official and unofficial controllers</h4>
|
|
||||||
Use your first-party Xbox, PlayStation, and Nintendo controllers, as well as
|
|
||||||
many 3rd party controllers. Guitar Hero controllers? ✅<br>
|
|
||||||
LEGO Dimensions ToyPad? ✅<br>
|
|
||||||
More supported controllers and how to implement them can be found in the
|
|
||||||
<a target="_blank" rel="noopener noreferrer"
|
|
||||||
href="https://retrodeck.readthedocs.io/en/latest/">Wiki</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Feature 5 -->
|
|
||||||
<div class="feature-detail-container rounded-3 p-3" id="">
|
|
||||||
<!-- Image/Video Container -->
|
|
||||||
<div class="row" id="feature-media-container">
|
|
||||||
<div class="col">
|
|
||||||
<img class="img-fluid rounded-3" src="assets/screens/small/screen04.png">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Feature Detail Container -->
|
|
||||||
<div class="row py-2 rounded-3 feature-text-container">
|
|
||||||
<div class="col">
|
|
||||||
<h4>Move to a new device</h4>
|
|
||||||
If you get a new Steam Deck or upgrade the internal storage, moving your RetroDECK installation is easy.
|
|
||||||
Just install RetroDECK on the new device and copy your existing folder over.
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Feature 6 -->
|
|
||||||
<div class="feature-detail-container rounded-3 p-3" id="">
|
|
||||||
<!-- Image/Video Container -->
|
|
||||||
<div class="row" id="feature-media-container">
|
|
||||||
<div class="col">
|
|
||||||
<img class="img-fluid rounded-3" src="assets/screens/small/screen04.png">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Feature Detail Container -->
|
|
||||||
<div class="row py-2 rounded-3 feature-text-container">
|
|
||||||
<div class="col">
|
|
||||||
<h4>Show off your skills</h4>
|
|
||||||
If you have a RetroAchievements account, you can connect it to RetroDECK and track your progress.
|
|
||||||
You can sign up <a target="_blank" rel="noopener noreferrer"
|
|
||||||
href="https://retroachievements.org/">here.</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<!-- End Right Column -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- End Feature Section -->
|
|
||||||
|
|
||||||
<!-- Donate Jumbotron -->
|
|
||||||
<div class="p-2 bg-body-tertiary rounded-3 jumbotron my-gradient gradient-spin">
|
|
||||||
<div class="container-fluid py-3 py-md-5">
|
|
||||||
<div class="row">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="row align-items-center">
|
|
||||||
<div class="col-md-8">
|
|
||||||
<h1 class="display-md-5 fw-bold">We can't do this alone</h1>
|
|
||||||
<p class="fs-md-4">
|
|
||||||
RetroDECK is run by volunteers.
|
|
||||||
If you appreciate our work, please consider code contribution or donating to us or our
|
|
||||||
sibling
|
|
||||||
projects.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-4 text-center">
|
|
||||||
<a class="btn btn-dark btn-lg align-center" type="button" target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
href="https://retrodeck.readthedocs.io/en/latest/wiki_about/donations-licenses/">
|
|
||||||
<i class="bi bi-balloon-heart pe-2"></i>Learn More
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- End Jumbotron -->
|
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
<!-- End Main Content -->
|
<!-- End Main Content -->
|
||||||
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<footer class="container-fluid pt-2 pb-2">
|
<footer class="container-fluid pt-2 pb-2">
|
||||||
<div class="row justify-content-betweetn small">
|
<div class="row">
|
||||||
<div class="col float-start align-content-end">
|
<div class="col text-center">
|
||||||
Created by <a target="_blank" rel="noopener noreferrer" href="https://github.com/jiannazzone">Adam
|
Created by <a target="_blank" rel="noopener noreferrer" href="https://github.com/jiannazzone">Adam
|
||||||
Iannazzone</a> and the RetroDECK team.
|
Iannazzone</a> and the RetroDECK team.
|
||||||
</div>
|
</div>
|
||||||
<div class="col align-content-end">
|
<!-- <div class="col align-content-end">
|
||||||
<div class="form-check form-switch float-end">
|
<div class="form-check form-switch float-end">
|
||||||
<input class="form-check-input" id="reduce-motion-switch" type="checkbox" role="switch"
|
<input class="form-check-input" id="reduce-motion-switch" type="checkbox" role="switch"
|
||||||
id="reduceMotionSwitch" onchange="reduceMotion()">
|
id="reduceMotionSwitch" onchange="reduceMotion()">
|
||||||
<label class="form-check-label" for="reduceMotionSwitch">Reduce motion</label>
|
<label class="form-check-label" for="reduceMotionSwitch">Reduce motion</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div> -->
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
<!-- End Footer -->
|
<!-- End Footer -->
|
||||||
|
|
Loading…
Reference in a new issue