mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-22 22:25:37 +01:00
83 lines
3.2 KiB
HTML
83 lines
3.2 KiB
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport"
|
||
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||
|
<title>yuzu Installer</title>
|
||
|
|
||
|
<link rel="stylesheet" href="/css/bulma.css" type="text/css">
|
||
|
<link rel="stylesheet" href="/css/main.css" type="text/css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<nav class="navbar is-dark" role="navigation" aria-label="main navigation">
|
||
|
<div class="navbar-brand">
|
||
|
<span class="navbar-item">
|
||
|
<img src="/img/logo.png" alt="Logo">
|
||
|
</span>
|
||
|
</div>
|
||
|
</nav>
|
||
|
|
||
|
<!-- Main content -->
|
||
|
<section class="section">
|
||
|
<div class="container">
|
||
|
<div class="columns">
|
||
|
<div class="column is-one-third">
|
||
|
<h1 class="title">
|
||
|
Welcome to the yuzu installer!
|
||
|
</h1>
|
||
|
<h2 class="subtitle">
|
||
|
We will have you up and running in just a few moments.
|
||
|
</h2>
|
||
|
</div>
|
||
|
|
||
|
<div class="column">
|
||
|
<h4 class="subtitle">Select your preferred settings:</h4>
|
||
|
|
||
|
<!-- Build options -->
|
||
|
<div class="tile is-ancestor">
|
||
|
<div class="tile is-parent">
|
||
|
<div class="tile is-child">
|
||
|
<div class="box">
|
||
|
<label class="checkbox">
|
||
|
<input type="checkbox" />
|
||
|
yuzu Nightly
|
||
|
</label>
|
||
|
<p>
|
||
|
The nightly build of yuzu contains already reviewed and tested features.
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="tile is-parent">
|
||
|
<div class="tile is-child">
|
||
|
<div class="box">
|
||
|
<label class="checkbox">
|
||
|
<input type="checkbox" />
|
||
|
yuzu Canary
|
||
|
</label>
|
||
|
<p>
|
||
|
The canary build of yuzu has additional features that are still waiting on
|
||
|
review.
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="field">
|
||
|
<label class="label subtitle is-6">Install Location</label>
|
||
|
<div class="control">
|
||
|
<input class="input" type="text" placeholder="%localappdata%\yuzu">
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<a class="button is-primary">Install!</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
</body>
|
||
|
</html>
|