mirror of
https://github.com/yuzu-emu/yuzu-emu.github.io.git
synced 2025-06-30 22:58:24 +00:00
Updated theme. Updated scss to account for theme changes. Added yuzu-specific layouts for header and sidebar.
This commit is contained in:
parent
1efca00b38
commit
578e0e65d0
|
@ -9,11 +9,12 @@ paginate = 10
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
GithubURL = "https://github.com/yuzu-emu/yuzu"
|
GithubURL = "https://github.com/yuzu-emu/yuzu"
|
||||||
|
ProjectName = "yuzu emulator project"
|
||||||
|
|
||||||
[Languages]
|
[Languages]
|
||||||
[Languages.en]
|
[Languages.en]
|
||||||
title = "Yuzu"
|
title = "yuzu"
|
||||||
tagline = "Experimental Nintendo Switch Emulator"
|
tagline = "An experimental Nintendo Switch Emulator"
|
||||||
description = "Yuzu is a highly experimental open-source emulator for the Nintendo Switch."
|
description = "Yuzu is a highly experimental open-source emulator for the Nintendo Switch."
|
||||||
weight = 1
|
weight = 1
|
||||||
|
|
||||||
|
|
24
site/layouts/partials/header_homepage.html
Normal file
24
site/layouts/partials/header_homepage.html
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
<section id="homepage-hero" class="hero container is-primary">
|
||||||
|
<div class="hero-body">
|
||||||
|
<div class="columns">
|
||||||
|
<!-- Left panel -->
|
||||||
|
<div class="column is-5">
|
||||||
|
<h1 class="title">{{ .Site.Title }}</h1>
|
||||||
|
<h2 class="subtitle">{{ .Site.Params.Tagline }}</h2>
|
||||||
|
<a class="button is-medium is-inverted" href="{{ .Site.Params.GithubURL }}">
|
||||||
|
<span class="icon">
|
||||||
|
<i class="fab fa-github"></i>
|
||||||
|
</span>
|
||||||
|
<span>Source Code</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Right panel -->
|
||||||
|
<div class="column is-7">
|
||||||
|
<figure class="image is-16by9">
|
||||||
|
<img src="{{ .Site.BaseURL}}/images/jumbotron.png" />
|
||||||
|
</figure>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
2
site/layouts/partials/sidebar.html
Normal file
2
site/layouts/partials/sidebar.html
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
<h4 class="is-size-4">Twitter Feed</h4>
|
||||||
|
<p>No tweets yet, check back soon!</p>
|
BIN
site/static/images/jumbotron.png
Normal file
BIN
site/static/images/jumbotron.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 199 KiB |
2
site/static/images/rays.svg
Normal file
2
site/static/images/rays.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 6.1 KiB |
|
@ -1 +1 @@
|
||||||
Subproject commit 2bc248dd03ba59326a4ab451c8c4d78c9672f27b
|
Subproject commit d4433a4244538e0a72c3c359e7d2db7bed564274
|
|
@ -0,0 +1,7 @@
|
||||||
|
$navbar-height: 64px;
|
||||||
|
$body-background-color: #e5e5e5;
|
||||||
|
$footer-background-color: $body-background-color;
|
||||||
|
|
||||||
|
#homepage-hero {
|
||||||
|
background-image: url(../images/rays.svg);
|
||||||
|
}
|
|
@ -1,2 +1,3 @@
|
||||||
|
@import "./shared.scss";
|
||||||
@import "./yuzu.scss";
|
@import "./yuzu.scss";
|
||||||
@import "./node_modules/bulma/bulma.sass";
|
@import "./node_modules/bulma/bulma.sass";
|
|
@ -1 +1,2 @@
|
||||||
$primary: #696969;
|
$primary: #696969;
|
||||||
|
$navbar-item-hover-color: purple;
|
Loading…
Reference in a new issue