This commit is contained in:
Exverge 2024-03-14 19:41:17 -04:00
parent a8d738a11f
commit 23a7f6aee1
100 changed files with 3910 additions and 1 deletions

View file

@ -20,7 +20,7 @@
<h1>Site is temporarily unavailable.</h1>
<p>Scheduled maintenance is currently in progress. Please check back soon.</p>
<p>We apologize for any inconvenience.</p>
<p id="signature">&mdash; <i>Team behind <a href="https://citra-emu.org">Citra</a> and <a href="https://yuzu-mirror.github.io">yuzu</a></i></p>
<p id="signature">&mdash; <i>Team behind <a href="https://citra-emu.org">Citra</a> and <a href="https://yuzu-emu.org">yuzu</a></i></p>
</article>
</body>
</html>

66
site/layouts/index.html Normal file
View file

@ -0,0 +1,66 @@
{{ define "header" }} {{ partial "homepage/hero" . }}
<!-- Wiki Hero -->
<section class="hero is-info">
<div class="hero-body py-lg">
<div class="container">
<nav class="columns">
<a class="column has-text-centered" href="{{ .Site.BaseURL }}/help/quickstart/">
<span class="icon is-actionable is-large">
<i class="fas fa-3x fa-code"></i>
</span>
<p class="title is-4">
<strong>Getting Started</strong>
</p>
<p class="subtitle is-6">How to get up and running with games</p>
</a>
<a class="column has-text-centered" href="{{ .Site.BaseURL }}/wiki/switch-hardware-and-software/">
<span class="icon is-actionable is-large">
<i class="fas fa-3x fa-terminal"></i>
</span>
<p class="title is-4">
<strong>Reverse Engineering</strong>
</p>
<p class="subtitle is-6">Learn the Switch hardware and software stack</p>
</a>
<a class="column has-text-centered" href="{{ .Site.BaseURL }}/wiki/switch-homebrew/">
<span class="icon is-actionable is-large">
<i class="fas fa-3x fa-gamepad"></i>
</span>
<p class="title is-4">
<strong>Homebrew Apps</strong>
</p>
<p class="subtitle is-6">Resources to get started with Switch homebrew</p>
</a>
</nav>
</div>
</div>
</section>
{{ end }}
{{ define "main" }}
<section class="section">
<div class="columns">
{{ range first 2 (where (where .Site.RegularPages ".Params.twitter" "==" nil) "Type" "entry") }}
<div class="column is-half">
{{ partial "entry/summary" . }}
</div>
{{ end }}
</div>
<div class="columns is-multiline">
{{ range first 4 (where (where .Site.RegularPages ".Params.twitter" "!=" nil) "Type" "entry") }}
<div class="column is-half">
{{ partial "entry/summary" . }}
</div>
{{ end }}
</div>
<div class="has-text-centered">
<a class="pagination-next" href="{{ .Site.BaseURL }}/entry/">View more posts</a>
</div>
</section>
{{ end }}

View file

@ -0,0 +1,262 @@
{{ define "header" }}
<link href="//cdn.jsdelivr.net/npm/font-logos@0.18/assets/font-logos.css" rel="stylesheet">
<section class="section">
<div class="container">
<div class="mb-3" id="download-header">
<h1 class="title is-flex-grow-1 mb-0">{{ .Title }}</h1>
</div>
<div id="unsupported-platform-view">
<article class="message is-danger" id="platform-unsupported">
<div class="message-body has-text-white my-5">
Currently, yuzu doesn't support your platform. If you are running Windows x64 or Linux x64 however,
choose one of the options above.
</div>
</article>
</div>
<div class="show-with-js">
<div class="tabs " id="platform-switcher">
<ul>
<li data-target="tab-windows">
<a>
<span class="icon is-small"><i class="fab fa-windows"></i></span>
<span>Windows</span>
</a>
</li>
<li data-target="tab-linux">
<a>
<span class="icon is-small"><i class="fab fa-linux"></i></span>
<span>Linux</span>
</a>
</li>
<li data-target="tab-android">
<a>
<span class="icon is-small"><i class="fab fa-android"></i></span>
<span>Android</span>
</a>
</li>
</ul>
</div>
<div class="content">
<h2>Instructions</h2>
</div>
</div>
<div class="content" id="platform-instructions">
{{ .Content }}
</div>
<div class="content">
<div id="download-buttons">
<a href="https://github.com/yuzu-emu/liftinstall/releases/download/1.9/yuzu_install.exe" class="button dl-button is-medium is-success" id="dl-button-windows">
<span class="icon mr-1"><i class="fab fa-windows"></i></span> Download for Windows x64
</a>
<a href="https://github.com/yuzu-emu/liftinstall/releases/download/1.9/liftinstall-31b3e7e.tar.xz" class="button dl-button is-medium is-success" id="dl-button-linux">
<span class="icon mr-1"><i class="fab fa-linux"></i></span> Download for Linux x64
</a>
<a href="https://play.google.com/store/apps/details?id=org.yuzu.yuzu_emu" class="button dl-button is-medium is-success" id="dl-button-android">
<span class="icon mr-1"><i class="fab fa-android"></i></span> Download for Android
</a>
</div>
</div>
</div>
</section>
<section class="section pt-0">
<div class="container">
<div class="hide-with-js content">
<h2>Builds</h2>
<article class="message is-warn">
<div class="message-body has-text-white mb-6">
Hi! We see that you have JavaScript disabled. You can still use the
above download links but we can't show you an updated listing of the available
packages for yuzu, nor alternative installation methods, but we recommend
viewing the
<a href="https://github.com/yuzu-emu/yuzu-mainline/releases">Mainline releases on GitHub</a>
</div>
</article>
</div>
<div class="show-with-js" id="package-view-mainline">
<!-- Mainline -->
<div class="content">
<h2>Builds
<span class="tag is-info">
Last release was &nbsp;
<span id='last-updated-mainline'></span>
</span>
</h2>
<div id="downloads-mainline">
</div>
<div id="unavailable-mainline" class="is-hidden">There was a problem checking GitHub. Click the link below to view them directly.</div>
<br />
<div class="has-text-centered">
<a href="https://github.com/yuzu-emu/yuzu-mainline/releases">Click here to view previous versions...</a>
</div>
</div>
</div>
<div class="show-with-js" id="package-view-android">
<!-- Android -->
<div class="content">
<h2>Builds
<span class="tag is-info">
Last release was &nbsp;
<span id='last-updated-android'></span>
</span>
</h2>
<div id="downloads-android">
</div>
<div id="unavailable-android" class="is-hidden">There was a problem checking GitHub. Click the link below to view them directly.</div>
<br />
<div class="has-text-centered">
<a href="https://github.com/yuzu-emu/yuzu-android/releases">Click here to view previous versions...</a>
</div>
</div>
</div>
</div>
</section>
<!-- Advertisement -->
<section class="hero is-info">
<div class="hero-body">
<div class="has-text-centered">
<ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-4126545610079023" data-ad-slot="1038554045"></ins>
</div>
</div>
</section>
{{ end }}
{{ define "scripts" }}
<script type="text/javascript">
function getFragment () {
const fragment = window.location.hash;
if (!fragment) return null;
switch (fragment) {
case "#linux": return "Linux";
case "#android": return "Android";
case "#windows": return "Windows";
}
return null;
}
const setTabActive = (targetId) => {
document.querySelectorAll(".content .tab-content")
.forEach(element => element.style.display = "none");
document.querySelectorAll(`#${targetId}`)
.forEach(element => element.style.display = "block");
document.querySelectorAll(".tabs li")
.forEach(element => element.classList.remove('is-active'));
document.querySelectorAll(`[data-target="${targetId}"]`)
.forEach(element => element.classList.add('is-active'));
const fragment = targetId.split('-')[1];
window.location.hash = `#${fragment}`;
switch (targetId) {
case "tab-windows":
document.getElementById("package-view-mainline").style.display = "block";
document.getElementById("dl-button-windows").style.display = "";
document.getElementById("package-view-android").style.display = "none";
document.getElementById("dl-button-linux").style.display = "none";
document.getElementById("dl-button-android").style.display = "none";
break;
case "tab-linux":
document.getElementById("package-view-mainline").style.display = "block";
document.getElementById("dl-button-linux").style.display = "";
document.getElementById("package-view-android").style.display = "none";
document.getElementById("dl-button-windows").style.display = "none";
document.getElementById("dl-button-android").style.display = "none";
break;
case "tab-android":
document.getElementById("package-view-android").style.display = "block";
document.getElementById("dl-button-android").style.display = "";
document.getElementById("package-view-mainline").style.display = "none";
document.getElementById("dl-button-windows").style.display = "none";
document.getElementById("dl-button-linux").style.display = "none";
break;
default:
document.getElementById("unsupported-platform-view").style.display = "block";
break
}
}
const getOSGuess = () => {
const userAgent = navigator.userAgent.toLowerCase();
if (userAgent.includes("windows")) {
return "Windows";
} else if (
userAgent.includes("mac") &&
!userAgent.includes("mobile") &&
!userAgent.includes("phone")
) {
return "Mac";
} else if (
userAgent.includes("android")
) {
return "Android";
} else if (
userAgent.includes("linux")
) {
return "Linux";
}
return "Other";
}
const setupListeners = () => {
document.querySelectorAll(".tabs li")
.forEach(element =>
element.addEventListener('click', (event) => {
setTabActive(element.dataset.target);
})
);
}
getRelease('mainline');
getRelease('android');
// Show JS relevant elements
document.querySelectorAll(".hide-with-js")
.forEach(element => element.style.display = "none");
document.querySelectorAll(".show-with-js")
.forEach(element => element.style.display = "block");
document.querySelectorAll(".content .tab-content")
.forEach(element => element.style.display = "none");
// Attempt autodetection of their operating system
switch (getFragment() || getOSGuess()) {
case "Windows":
setTabActive('tab-windows');
break;
case "Linux":
setTabActive('tab-linux');
break;
case "Android":
setTabActive('tab-android');
break;
default:
setTabActive('tab-windows');
document.getElementById("dl-button-windows").style.display = "none";
document.getElementById("unsupported-platform-view").style.display = "block";
break
}
window.addEventListener('DOMContentLoaded', setupListeners);
</script>
{{ end }}

View file

@ -0,0 +1,74 @@
<div class="columns">
<!-- Left panel -->
<div class="column is-centered-vertically is-5">
<h2 class="title">{{ .Site.Params.Tagline }}</h2>
<div class="content">
<p>yuzu is an experimental open-source emulator for the Nintendo Switch from the creators of Citra.</p>
<p>It is written in C++ with portability in mind, with builds actively maintained for Windows, Linux and Android.</p>
</div>
<div>
<a class="button mr-sm is-medium is-light is-hidden-touch" href="/downloads">
<span class="icon">
<i class="fas fa-arrow-down"></i>
</span>
<span>Download</span>
</a>
<a class="button mr-sm is-medium is-primary is-inverted is-outlined" href="{{ .Site.Params.GithubURL }}" target="_blank">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>Source Code</span>
</a>
</div>
</div>
<!-- Right panel -->
<div class="column is-centered-vertically is-7 is-hidden-mobile">
<div class="container is-fluid is-marginless">
<figure class="image">
{{ partial "inline/heroSvg" }}
</figure>
<figure class="is-overlay offset-switch-overlay">
<div class="glide">
<div class="glide__track" data-glide-el="track">
<ul class="glide__slides">
{{ $jumbotronImages := resources.Match "/images/jumbotron/*" }}
{{ range $index, $element := $jumbotronImages }}
{{ $jumbotronThumb := $element.Fill "426x240 jpg q95" }}
{{ $fileTitle := (index (split .Name "-") 1) }}
{{ $fileTitle := (index (split $fileTitle ".") 0) }}
<li class="glide__slide">
<div class="image is-16by9">
<div class="carousel-caption">{{ $fileTitle }}</div>
<img {{if eq $index 0}}
src="{{ $jumbotronThumb.Permalink }}"
{{else}}
class="lazy-load"
data-src="{{ $jumbotronThumb.Permalink }}"
{{end}}
alt="{{ $fileTitle }}">
</div>
</li>
{{ end }}
</ul>
</div>
<div class="glide__arrows is-overlay" data-glide-el="controls">
<a class="glide__arrow glide__arrow--left is-pulled-left" data-glide-dir="<">
<span class="icon is-large">
<i class="fas fa-arrow-left"></i>
</span>
</a>
<a class="glide__arrow glide__arrow--right is-pulled-right" data-glide-dir=">">
<span class="icon is-large">
<i class="fas fa-arrow-right"></i>
</span>
</a>
</div>
</div>
</figure>
</div>
</div>
</div>

View file

@ -0,0 +1,400 @@
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg815"
xml:space="preserve"
viewBox="0 0 1840.84 784.29333"
sodipodi:docname="switch_outline_svg_final_white_gap.svg"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><metadata
id="metadata821"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs819"><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath831"><path
d="M 0,588.22 H 1380.63 V 0 H 0 Z"
id="path829"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath855"><path
d="M 0,588.22 H 1380.63 V 0 H 0 Z"
id="path853"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath967"><path
d="M 0,588.22 H 1380.63 V 0 H 0 Z"
id="path965"
inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview817"
showgrid="false"
inkscape:zoom="0.55313541"
inkscape:cx="1014.4308"
inkscape:cy="261.82145"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g823" /><g
id="g823"
inkscape:groupmode="layer"
inkscape:label="switch_outline_svg_final_white"
transform="matrix(1.3333333,0,0,-1.3333333,0,784.29333)"><g
id="jumbotron-switch"
inkscape:label="#g825"><g
id="g827"
clip-path="url(#clipPath831)"><g
id="g833"
transform="translate(1162.8783,14.2794)"><path
d="m 0,0 h -945.347 c -0.117,0 -1.729,0.072 -2.612,1.323 -0.434,0.616 -0.523,1.251 -0.544,1.583 v 525.938 c -0.055,2.062 0.828,3.88 2.338,4.656 0.704,0.361 1.409,0.427 1.943,0.406 0,0 4.556,-0.239 7.782,2.406 4.281,3.512 3.937,9.448 3.937,9.448 v 7.355 c -0.059,1.171 0.42,2.205 1.256,2.636 0.361,0.185 0.73,0.229 1.036,0.218 h 915.458 c 0.718,0 0.941,0.047 1.559,-0.611 0.574,-0.61 0.533,-1.36 0.524,-1.483 v -6.573 c 0,-5.63 2.185,-10.344 6.167,-12.354 0.938,-0.474 2.538,-1.078 4.792,-1.021 1.47,0.065 2.305,-0.382 2.852,-0.733 2.42,-1.551 2.273,-4.892 2.273,-4.892 V 2.677 C 3.414,2.37 3.19,1.726 2.71,1.158 1.722,-0.01 0.229,-0.005 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path835"
inkscape:connector-curvature="0" /></g><g
id="g837"
transform="translate(340.3753,570.2497)"><path
d="m 0,0 v 2.936 c 0,0 0.375,1.062 1.417,1.062 h 24.27 c 0,0 1.322,0.108 1.322,-1.022 h 27.022 c 0,0 -0.015,1.025 1.016,1.025 h 24.307 c 0,0 0.625,-0.086 0.625,-0.898 v -3.105 z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path839"
inkscape:connector-curvature="0" /></g><g
id="g841"
transform="translate(256.6878,32.3106)"><path
d="m 0,0 c -0.439,0 -6.662,-0.244 -11.187,4.312 -4.385,4.416 -4.25,10.518 -4.25,10.876 v 450.374 38.453 c 0,0.357 -0.135,6.46 4.25,10.875 4.525,4.557 10.748,4.312 11.187,4.312 h 866.855 c 0.439,0 6.663,0.245 11.188,-4.312 4.384,-4.415 4.25,-10.518 4.25,-10.875 V 465.562 15.188 c 0,-0.358 0.134,-6.46 -4.25,-10.876 C 873.518,-0.244 867.294,0 866.855,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path843"
inkscape:connector-curvature="0" /></g><g
id="g845"
transform="translate(1069.0941,78.0919)"><path
d="m 0,0 c 0,0 0.927,-0.013 1.573,0.475 0.97,0.732 0.958,2.056 0.958,2.056 v 424.667 c 0,0 0.012,1.324 -0.958,2.056 C 0.927,429.742 0,429.729 0,429.729 h -756.625 c 0,0 -0.927,0.013 -1.573,-0.475 -0.97,-0.732 -0.958,-2.056 -0.958,-2.056 V 2.531 c 0,0 -0.012,-1.324 0.958,-2.056 0.646,-0.488 1.573,-0.475 1.573,-0.475 z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path847"
inkscape:connector-curvature="0" /></g></g></g><g
id="jumbotron-rightjoy"
inkscape:label="#g849"
transform="translate(6)"><g
id="g851"
clip-path="url(#clipPath855)"><g
id="g857"
transform="translate(1173.6665,13.2869)"><path
d="m 0,0 h 67.459 c 7.958,0.214 46.909,2.093 78.333,34.086 31.118,31.682 32.547,70.182 32.667,78.25 V 438.42 c 0.09,10.549 -1.02,41.877 -23.25,71.166 -30.368,40.011 -76.201,44.666 -83.813,45.313 H 3.021 c -2.503,0 -3.864,-0.77 -4.771,-2.313 -0.62,-1.055 -0.584,-2.039 -0.584,-2.666 V 1.951 C -2.346,1.708 -2.321,1.358 -2.133,1.01 -1.767,0.33 -0.932,-0.055 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path859"
inkscape:connector-curvature="0" /></g><g
id="g861"
transform="translate(1247.3754,170.9981)"><path
d="m 0,0 c 0,-12.219 -9.906,-22.125 -22.125,-22.125 -12.219,0 -22.125,9.906 -22.125,22.125 0,12.219 9.906,22.125 22.125,22.125 C -9.906,22.125 0,12.219 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path863"
inkscape:connector-curvature="0" /></g><g
id="g865"
transform="translate(1217.3754,162.3315)"><path
d="m 0,0 h 15.958 v 9.833 h 3.25 l -9.989,9.99 H 6.781 L -3.05,9.992 H 0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path867"
inkscape:connector-curvature="0" /></g><g
id="g869"
transform="translate(1297.0004,275.2481)"><path
d="m 0,0 c 0,-22.851 -18.524,-41.375 -41.375,-41.375 -22.851,0 -41.375,18.524 -41.375,41.375 0,22.851 18.524,41.375 41.375,41.375 C -18.524,41.375 0,22.851 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path871"
inkscape:connector-curvature="0" /></g><g
id="g873"
transform="translate(1287.3754,275.2481)"><path
d="m 0,0 c 0,-17.535 -14.215,-31.75 -31.75,-31.75 -17.535,0 -31.75,14.215 -31.75,31.75 0,17.535 14.215,31.75 31.75,31.75 C -14.215,31.75 0,17.535 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path875"
inkscape:connector-curvature="0" /></g><g
id="g877"
transform="translate(1287.3754,275.2481)"><path
d="M 0,0 H 7"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path879"
inkscape:connector-curvature="0" /></g><g
id="g881"
transform="translate(1223.8754,275.2481)"><path
d="M 0,0 H -7"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path883"
inkscape:connector-curvature="0" /></g><g
id="g885"
transform="translate(1255.6254,306.9981)"><path
d="M 0,0 V 7"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path887"
inkscape:connector-curvature="0" /></g><g
id="g889"
transform="translate(1255.6254,243.4981)"><path
d="M 0,0 V -6.958"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path891"
inkscape:connector-curvature="0" /></g><g
id="g893"
transform="translate(1275.6879,387.9356)"><path
d="m 0,0 c 0,-11.184 -9.066,-20.25 -20.25,-20.25 -11.184,0 -20.25,9.066 -20.25,20.25 0,11.184 9.066,20.25 20.25,20.25 C -9.066,20.25 0,11.184 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path895"
inkscape:connector-curvature="0" /></g><g
id="g897"
transform="translate(1319.2349,429.4356)"><path
d="m 0,0 c 0,-11.184 -9.066,-20.25 -20.25,-20.25 -11.184,0 -20.25,9.066 -20.25,20.25 0,11.184 9.066,20.25 20.25,20.25 C -9.066,20.25 0,11.184 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path899"
inkscape:connector-curvature="0" /></g><g
id="g901"
transform="translate(1275.6879,470.9356)"><path
d="m 0,0 c 0,-11.184 -9.066,-20.25 -20.25,-20.25 -11.184,0 -20.25,9.066 -20.25,20.25 0,11.184 9.066,20.25 20.25,20.25 C -9.066,20.25 0,11.184 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path903"
inkscape:connector-curvature="0" /></g><g
id="g905"
transform="translate(1232.2593,429.4246)"><path
d="m 0,0 c 0,-11.184 -9.066,-20.25 -20.25,-20.25 -11.184,0 -20.25,9.066 -20.25,20.25 0,11.184 9.066,20.25 20.25,20.25 C -9.066,20.25 0,11.184 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path907"
inkscape:connector-curvature="0" /></g><g
id="g909"
transform="translate(1210.6156,428.2047)"><path
d="m 0,0 -6.816,10.326 h 3.128 l 4.909,-7.91 5.061,7.91 H 9.258 L 2.441,0 V -7.682 H 0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path911"
inkscape:connector-curvature="0" /></g><g
id="g913"
transform="translate(1252.7787,380.941)"><path
d="M 0,0 H 3.586 C 3.959,0 4.37,0.038 4.819,0.114 5.269,0.19 5.688,0.343 6.078,0.572 6.469,0.801 6.799,1.11 7.07,1.5 7.342,1.89 7.478,2.407 7.478,3.052 7.478,4.12 7.13,4.921 6.435,5.456 5.739,5.99 4.798,6.257 3.611,6.257 H 0 Z m 0,8.394 h 3.331 c 0.458,0 0.891,0.046 1.298,0.139 0.407,0.093 0.763,0.25 1.068,0.471 0.305,0.22 0.547,0.5 0.725,0.839 0.178,0.339 0.266,0.755 0.266,1.246 0,0.713 -0.228,1.331 -0.686,1.857 -0.458,0.526 -1.179,0.789 -2.162,0.789 H 0 Z m -2.442,7.477 h 6.256 c 0.781,0 1.505,-0.093 2.175,-0.28 0.67,-0.186 1.246,-0.462 1.73,-0.826 C 8.202,14.4 8.584,13.934 8.863,13.366 9.144,12.798 9.283,12.132 9.283,11.369 9.283,10.335 8.995,9.491 8.419,8.838 7.842,8.186 7.096,7.707 6.181,7.401 V 7.351 C 6.723,7.316 7.231,7.176 7.706,6.931 8.181,6.685 8.592,6.363 8.94,5.964 9.287,5.566 9.563,5.104 9.767,4.578 9.97,4.052 10.072,3.484 10.072,2.874 10.072,2.06 9.906,1.344 9.576,0.725 9.245,0.105 8.791,-0.416 8.215,-0.839 7.639,-1.264 6.969,-1.586 6.206,-1.806 5.442,-2.027 4.62,-2.137 3.738,-2.137 h -6.18 z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path915"
inkscape:connector-curvature="0" /></g><g
id="g917"
transform="translate(1302.5765,427.2984)"><path
d="M 0,0 -3.357,8.266 H -3.408 L -6.816,0 Z m -4.375,11.42 h 2.213 L 5.545,-6.588 H 2.696 l -1.805,4.451 h -8.573 l -1.78,-4.451 h -2.849 z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path919"
inkscape:connector-curvature="0" /></g><g
id="g921"
transform="translate(1253.6127,471.1617)"><path
d="m 0,0 -6.054,8.546 h 3.128 L 1.755,1.628 6.384,8.546 H 9.437 L 3.434,0.025 10.047,-9.462 H 6.842 l -5.163,7.809 -5.19,-7.809 h -3.026 z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path923"
inkscape:connector-curvature="0" /></g><g
id="g925"
transform="translate(1214.7504,519.8731)"><path
d="M 0,0 V -9.062"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path927"
inkscape:connector-curvature="0" /></g><g
id="g929"
transform="translate(1204.5004,519.8731)"><path
d="M 0,0 H 10.25"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path931"
inkscape:connector-curvature="0" /></g><g
id="g933"
transform="translate(1195.8754,519.8731)"><path
d="M 0,0 V 9.813 H 8.625 V 0"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path935"
inkscape:connector-curvature="0" /></g><g
id="g937"
transform="translate(1214.7504,510.8106)"><path
d="M 0,0 H -10.25"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path939"
inkscape:connector-curvature="0" /></g><g
id="g941"
transform="translate(1185.6254,510.8106)"><path
d="M 0,0 V 9.062"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path943"
inkscape:connector-curvature="0" /></g><g
id="g945"
transform="translate(1195.8754,510.8106)"><path
d="M 0,0 H -10.25"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path947"
inkscape:connector-curvature="0" /></g><g
id="g949"
transform="translate(1204.5004,510.8106)"><path
d="M 0,0 V -9.813 H -8.625 V 0"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path951"
inkscape:connector-curvature="0" /></g><g
id="g953"
transform="translate(1185.6254,519.8731)"><path
d="M 0,0 H 10.25"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path955"
inkscape:connector-curvature="0" /></g><g
id="g957"
transform="translate(1204.0531,568.1856)"><path
d="m 0,0 v 4.219 c 0,0.112 -0.072,0.944 0.572,1.593 0.651,0.656 1.372,0.584 1.605,0.584 h 36.739 c 10.39,-0.272 37.486,-2.361 64.281,-21.334 24.89,-17.623 35.921,-40.185 40,-49.874 0.761,-1.496 0.197,-3.29 -1.125,-4.032 -1.453,-0.815 -3.484,-0.167 -4.223,1.533"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path959"
inkscape:connector-curvature="0" /></g></g></g><g
id="jumbotron-leftjoy"
inkscape:label="#g961"
transform="translate(-6)"><g
id="g963"
clip-path="url(#clipPath967)"><g
id="g969"
transform="translate(104.9422,233.1024)"><path
d="m 0,0 c 0,-11.184 9.066,-20.25 20.25,-20.25 11.184,0 20.25,9.066 20.25,20.25 0,11.184 -9.066,20.25 -20.25,20.25 C 9.066,20.25 0,11.184 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path971"
inkscape:connector-curvature="0" /></g><g
id="g973"
transform="translate(61.3951,274.6024)"><path
d="m 0,0 c 0,-11.184 9.066,-20.25 20.25,-20.25 11.184,0 20.25,9.066 20.25,20.25 0,11.184 -9.066,20.25 -20.25,20.25 C 9.066,20.25 0,11.184 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path975"
inkscape:connector-curvature="0" /></g><g
id="g977"
transform="translate(104.9422,316.1024)"><path
d="m 0,0 c 0,-11.184 9.066,-20.25 20.25,-20.25 11.184,0 20.25,9.066 20.25,20.25 0,11.184 -9.066,20.25 -20.25,20.25 C 9.066,20.25 0,11.184 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path979"
inkscape:connector-curvature="0" /></g><g
id="g981"
transform="translate(148.3707,274.5913)"><path
d="m 0,0 c 0,-11.184 9.066,-20.25 20.25,-20.25 11.184,0 20.25,9.066 20.25,20.25 0,11.184 -9.066,20.25 -20.25,20.25 C 9.066,20.25 0,11.184 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path983"
inkscape:connector-curvature="0" /></g><g
id="g985"
transform="translate(83.6297,429.4905)"><path
d="M 0,0 C 0,-22.851 18.524,-41.375 41.375,-41.375 64.226,-41.375 82.75,-22.851 82.75,0 82.75,22.851 64.226,41.375 41.375,41.375 18.524,41.375 0,22.851 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path987"
inkscape:connector-curvature="0" /></g><g
id="g989"
transform="translate(93.2547,429.4905)"><path
d="M 0,0 C 0,-17.535 14.215,-31.75 31.75,-31.75 49.285,-31.75 63.5,-17.535 63.5,0 63.5,17.535 49.285,31.75 31.75,31.75 14.215,31.75 0,17.535 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path991"
inkscape:connector-curvature="0" /></g><g
id="g993"
transform="translate(93.2547,429.4905)"><path
d="M 0,0 H -7"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path995"
inkscape:connector-curvature="0" /></g><g
id="g997"
transform="translate(156.7547,429.4905)"><path
d="M 0,0 H 7"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path999"
inkscape:connector-curvature="0" /></g><g
id="g1001"
transform="translate(125.0047,461.2405)"><path
d="M 0,0 V 7"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1003"
inkscape:connector-curvature="0" /></g><g
id="g1005"
transform="translate(125.0047,397.7405)"><path
d="M 0,0 V -6.958"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1007"
inkscape:connector-curvature="0" /></g><g
id="g1009"
transform="translate(206.9635,13.6413)"><path
d="m 0,0 h -67.459 c -7.958,0.214 -46.909,2.093 -78.333,34.086 -31.118,31.682 -32.547,70.182 -32.667,78.25 v 326.083 c -0.09,10.55 1.02,41.878 23.25,71.167 30.368,40.011 76.201,44.666 83.813,45.313 h 68.375 c 2.503,0 3.864,-0.77 4.771,-2.313 0.62,-1.055 0.584,-2.039 0.584,-2.666 V 1.951 C 2.346,1.708 2.321,1.358 2.133,1.01 1.767,0.33 0.932,-0.055 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1011"
inkscape:connector-curvature="0" /></g><g
id="g1013"
transform="translate(165.8797,519.2274)"><path
d="M 0,0 V -9.063"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1015"
inkscape:connector-curvature="0" /></g><g
id="g1017"
transform="translate(176.1297,519.2274)"><path
d="M 0,0 H -10.25"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1019"
inkscape:connector-curvature="0" /></g><g
id="g1021"
transform="translate(195.0047,510.1649)"><path
d="M 0,0 V 9.063"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1023"
inkscape:connector-curvature="0" /></g><g
id="g1025"
transform="translate(184.7547,510.1649)"><path
d="M 0,0 H 10.25"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1027"
inkscape:connector-curvature="0" /></g><g
id="g1029"
transform="translate(176.1297,519.2274)"><path
d="m 0,0 h 8.625 10.25"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1031"
inkscape:connector-curvature="0" /></g><g
id="g1033"
transform="translate(176.5769,568.5399)"><path
d="m 0,0 v 4.219 c 0,0.112 0.072,0.944 -0.572,1.593 -0.651,0.656 -1.372,0.584 -1.605,0.584 h -36.739 c -10.39,-0.272 -37.486,-2.361 -64.281,-21.334 -24.89,-17.623 -35.921,-40.185 -40,-49.875 -0.761,-1.495 -0.197,-3.289 1.125,-4.031 1.453,-0.815 3.484,-0.167 4.223,1.533"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1035"
inkscape:connector-curvature="0" /></g><g
id="g1037"
transform="translate(118.5341,312.7148)"><path
d="M 0,0 6.658,11.532 13.316,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1039"
inkscape:connector-curvature="0" /></g><g
id="g1041"
transform="translate(164.3503,282.1156)"><path
d="M 0,0 11.532,-6.658 0,-13.316 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1043"
inkscape:connector-curvature="0" /></g><g
id="g1045"
transform="translate(118.3553,238.1302)"><path
d="M 0,0 6.658,-11.532 13.316,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1047"
inkscape:connector-curvature="0" /></g><g
id="g1049"
transform="translate(86.1462,281.9281)"><path
d="M 0,0 -11.532,-6.658 0,-13.316 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1051"
inkscape:connector-curvature="0" /></g><g
id="g1053"
transform="translate(184.7547,510.1649)"><path
d="m 0,0 h -8.625 -10.25"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1055"
inkscape:connector-curvature="0" /></g><g
id="g1057"
transform="translate(172.0995,169.0815)"><path
d="m 0,0 v -11.583 c 0,-0.245 0.071,-1.861 -1.062,-2.813 C -1.952,-15.103 -2.55,-15 -3.208,-15 h -26.791 c -0.658,0 -1.256,-0.103 -2.146,0.604 -1.133,0.952 -1.062,2.568 -1.062,2.813 V 0"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1059"
inkscape:connector-curvature="0" /></g><g
id="g1061"
transform="translate(172.0995,169.0815)"><path
d="m 0,0 v 15.236 c 0,0.245 0.071,1.86 -1.062,2.813 -0.89,0.707 -1.488,0.604 -2.146,0.604 h -26.791 c -0.658,0 -1.256,0.103 -2.146,-0.604 -1.133,-0.953 -1.062,-2.568 -1.062,-2.813 V 0"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1063"
inkscape:connector-curvature="0" /></g><g
id="g1065"
transform="translate(166.4124,171.1231)"><path
d="m 0,0 c 0,6.029 -4.888,10.917 -10.917,10.917 -6.029,0 -10.916,-4.888 -10.916,-10.917 0,-6.029 4.887,-10.917 10.916,-10.917 C -4.888,-10.917 0,-6.029 0,0 Z"
style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path1067"
inkscape:connector-curvature="0" /></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 28 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" class="navbar-logo" viewBox="0 0 515.83 163.11"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#ff3c28;}.cls-3{fill:#0ab9e6;}</style></defs><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M515.83,23.23v73c0,14.5-2.24,25.24-6.84,32.82-5.92,10.15-16.2,15.32-30.53,15.32s-24.62-5.23-30.58-15.57c-4.56-7.64-6.79-18.42-6.79-32.92V23.23a4.51,4.51,0,0,1,4.51-4.51h2.28a4.51,4.51,0,0,1,4.51,4.51v72.5c0,33.53,14.88,37.4,26.07,37.4,12.14,0,26.08-4.17,26.08-36.71V23.23a4.51,4.51,0,0,1,4.51-4.51h2.27A4.51,4.51,0,0,1,515.83,23.23Z"/><path class="cls-1" d="M421.34,144.4H353.45c-2.35,0-4.72-1.88-4.72-6.08a8.32,8.32,0,0,1,1.33-4.49L410.39,29.36H360.8a4.51,4.51,0,0,1-4.51-4.5V23.28a4.51,4.51,0,0,1,4.48-4.51h.81c58.68-.11,59.11,0,59.66.07a5.19,5.19,0,0,1,4,5.8,8.74,8.74,0,0,1-1.32,3.75L363.33,133.17h58a4.51,4.51,0,0,1,4.51,4.51v2.21A4.51,4.51,0,0,1,421.34,144.4Z"/><path class="cls-1" d="M248.45,23.23v82.06c0,26-11.8,38.44-37.12,39.09h-.12a4.51,4.51,0,0,1-4.51-4.51V137.5a4.51,4.51,0,0,1,4.48-4.5c18.49-.15,26-8.23,26-27.9v-2.37a32.34,32.34,0,0,1-3.34,3.28c-6.39,5.5-14.5,8.29-24.07,8.29-22.86,0-35-12.41-35-35.89V23.23a4.52,4.52,0,0,1,4.51-4.51h2.22a4.52,4.52,0,0,1,4.5,4.51v55c0,7.6,1.82,14.22,5,18.18,3.57,4.56,9.17,6.49,18.75,6.49,10.13,0,17.32-3.76,22-11.5,3.61-5.92,5.43-13.66,5.43-23V23.23a4.52,4.52,0,0,1,4.51-4.51h2.22A4.52,4.52,0,0,1,248.45,23.23Z"/><path class="cls-1" d="M338.12,23.23v73c0,14.5-2.24,25.24-6.84,32.82-5.92,10.15-16.2,15.32-30.53,15.32s-24.62-5.23-30.58-15.57c-4.56-7.64-6.79-18.42-6.79-32.92V23.23a4.51,4.51,0,0,1,4.51-4.51h2.28a4.51,4.51,0,0,1,4.51,4.51v72.5c0,33.53,14.88,37.4,26.07,37.4,12.14,0,26.08-4.17,26.08-36.71V23.23a4.51,4.51,0,0,1,4.51-4.51h2.27A4.51,4.51,0,0,1,338.12,23.23Z"/><g id="g823"><g id="right"><g id="g827"><g id="g833"><path id="path835" class="cls-2" d="M81.56,32.62V163.11a65.25,65.25,0,0,0,0-130.49M94.3,46.91a52.54,52.54,0,0,1,0,101.91V46.91"/></g></g></g><g id="left"><g id="g839"><g id="g845"><path id="path847" class="cls-3" d="M65.24,0a65.25,65.25,0,0,0,0,130.49ZM52.5,14.29V116.2A52.52,52.52,0,0,1,28.12,28.12,52.16,52.16,0,0,1,52.5,14.29"/></g></g></g></g></g></g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,6 @@
<!-- Advertisement -->
<div class="px-md has-text-centered">
<p class="is-size-6 has-text-centered">Advertisement</p>
<br>
<ins class="adsbygoogle" style="display:inline-block;width:728px;height:100px" data-ad-client="ca-pub-4126545610079023" data-ad-slot="1038554045"></ins>
</div>

View file

@ -0,0 +1,3 @@
<div class="content has-text-centered">
copyright &copy; {{ now.Format "2006" }} yuzu emulator team
</div>

View file

@ -0,0 +1,11 @@
<!-- Advertisement -->
<div class="px-md">
<!-- yuzu-auto-resize-2 -->
<ins class="adsbygoogle"
style="display:block; margin-left:25px;"
data-ad-client="ca-pub-4126545610079023"
data-ad-slot="6276099127"
data-ad-format="auto"></ins>
<br>
<p class="is-size-6 has-text-centered">Advertisement</p>
</div>

View file

@ -0,0 +1,4 @@
<h4 style="text-align:center;">
<b>Please consider supporting us on <a href="https://www.patreon.com/yuzuteam">Patreon</a>!<br>
If you would like to contribute to this project, check out our <a href="https://github.com/yuzu-emu/yuzu">GitHub</a>!</b>
</h4>

View file

@ -0,0 +1 @@
<a class="gh-hover" href="https://github.com/yuzu-emu/yuzu/pull/{{ .Get 0 }}" data-gh-pr="{{ .Get 0 }}">{{ .Get 1 | markdownify | safeHTML }}</a>

1
site/static/ads.txt Normal file
View file

@ -0,0 +1 @@
google.com, pub-4126545610079023, DIRECT, f08c47fec0942fa0

BIN
site/static/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 493 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 MiB

BIN
site/static/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 389 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 MiB

Binary file not shown.

5
update_submodules.sh Executable file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
rm -rf ./site/themes/shared-bulma-theme/
rm -rf ./scripts/shared-hugo-scripts/
git submodule update --remote --merge

3075
yarn.lock Normal file

File diff suppressed because it is too large Load diff