mirror of
https://github.com/yuzu-emu/yuzu-emu.github.io.git
synced 2025-11-10 13:35:40 +00:00
* Updated submodules. Updated SCSS for +spacing, entries CSS, updated config for descriptions. Gulp now uses yarn. etc. * Added authors.json, sidebar, and yarn.lock file. * Updated shared LESS. Updated gulp to combine js vendor files into main script. Refactored partials / renamed. Added blank template files for partials. Updated homepage. * Updated homepage, banners, etc. * Removed twitterBanner placeholder. * Updated sidebar with GA.
61 lines
2.2 KiB
HTML
61 lines
2.2 KiB
HTML
{{ 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 }}/wiki/home/">
|
|
<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">Build the yuzu source and make a contribution</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="pt-lg">
|
|
{{ $pag := .Paginate (where .Data.Pages "Type" "entry") 4 }}
|
|
|
|
<div class="columns is-multiline">
|
|
{{ range $pag.Pages }}
|
|
<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 }}
|