Skip to content

Commit

Permalink
updated site
Browse files Browse the repository at this point in the history
  • Loading branch information
davesmith00000 committed Sep 28, 2023
1 parent d36ff9d commit 9e2ee9c
Show file tree
Hide file tree
Showing 58 changed files with 105 additions and 64 deletions.
53 changes: 47 additions & 6 deletions 01-quickstart/examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="Typelevel Laika + Helium Theme" />
<title>Examples</title>
<title>Examples, Demos, and References</title>


<meta name="description" content="A 2D Pixel Art FP game engine for Scala."/>
Expand Down Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 active nav-leaf"><a href="#">Examples</a></li>
<li class="level2 active nav-leaf"><a href="#">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../quickstart/">Quick start</a></li>
Expand Down Expand Up @@ -188,9 +188,18 @@


<nav id="page-nav">
<p class="header"><a href="#">Examples</a></p>
<p class="header"><a href="#">Examples, Demos, and References</a></p>

<ul class="nav-list">
<li class="level1 nav-leaf"><a href="#examples">Examples</a></li>
<li class="level1 nav-node"><a href="#demos-references">Demos &amp; References</a></li>
<li class="level2 nav-leaf"><a href="#roguelike">Roguelike</a></li>
<li class="level2 nav-leaf"><a href="#roguelike-tutorial">Roguelike-Tutorial</a></li>
<li class="level2 nav-leaf"><a href="#the-cursed-pirate">The Cursed Pirate</a></li>
<li class="level2 nav-leaf"><a href="#snake">Snake!</a></li>
<li class="level2 nav-leaf"><a href="#snake-in-five-minutes">Snake! In five minutes!</a></li>
<li class="level2 nav-leaf"><a href="#pong">Pong!</a></li>
<li class="level2 nav-leaf"><a href="#shaders">Shaders</a></li>
</ul>

<p class="footer"></p>
Expand All @@ -199,12 +208,44 @@

<main class="content">

<h1 id="examples" class="title">Examples</h1>
<h1 id="examples-demos-and-references" class="title">Examples, Demos, and References</h1>
<p>At various points in Indigo&#39;s development, little games and examples have been made. These help drive out requirements, test the feel of the engine against real examples and help ensure the build is stable.</p>
<p>They are not always very polished, but they are small and reasonably easy to follow.</p>
<p>They can all be found in the <a href="https://github.com/PurpleKingdomGames/indigo-examples">indigo-examples</a> repo.</p>

<h2 id="examples" class="section"><a class="anchor-link left" href="#examples"><i class="icofont-laika link">&#xef71;</i></a>Examples</h2>
<p>Examples can all be found in the <a href="https://github.com/PurpleKingdomGames/indigo-examples">indigo-examples</a> repo.</p>
<p>Please visit the <a href="https://github.com/PurpleKingdomGames/indigo-examples">repo</a> for more information.</p>
<p>You can play a game of Snake and try the The Cursed Pirate Demo demo on this site. Please note that The Cursed Pirate is not a game, just a little demo of how you might build a platformer.</p>

<h2 id="demos-references" class="section"><a class="anchor-link left" href="#demos-references"><i class="icofont-laika link">&#xef71;</i></a>Demos &amp; References</h2>
<p>A slightly random collection of open source projects and demos you can use for reference.</p>

<h3 id="roguelike" class="section"><a class="anchor-link left" href="#roguelike"><i class="icofont-laika link">&#xef71;</i></a>Roguelike</h3>
<p>An implementation of a Roguelike, this was an evolution of the Roguelike Tutorial work below.</p>
<p>Please visit the repo for a playable link: <a href="https://github.com/davesmith00000/roguelike"><a href="https://github.com/davesmith00000/roguelike">https://github.com/davesmith00000/roguelike</a></a></p>

<h3 id="roguelike-tutorial" class="section"><a class="anchor-link left" href="#roguelike-tutorial"><i class="icofont-laika link">&#xef71;</i></a>Roguelike-Tutorial</h3>
<p>An attempt to follow the official roguelike tutorials using Scala and Indigo. Check out the repo README for more details.</p>
<p>Please visit the repo for playable links: <a href="https://github.com/davesmith00000/roguelike-tutorial"><a href="https://github.com/davesmith00000/roguelike-tutorial">https://github.com/davesmith00000/roguelike-tutorial</a></a></p>

<h3 id="the-cursed-pirate" class="section"><a class="anchor-link left" href="#the-cursed-pirate"><i class="icofont-laika link">&#xef71;</i></a>The Cursed Pirate</h3>
<p>A tiny little/limited platformer like demo originally built as a demo for a meetup talk:</p>
<p>Please visit the repo for a playable link: <a href="https://github.com/PurpleKingdomGames/pirate-demo"><a href="https://github.com/PurpleKingdomGames/pirate-demo">https://github.com/PurpleKingdomGames/pirate-demo</a></a></p>

<h3 id="snake" class="section"><a class="anchor-link left" href="#snake"><i class="icofont-laika link">&#xef71;</i></a>Snake!</h3>
<p>The original &quot;does this thing work&quot; Indigo demo. A 1-bit Snake implementation.</p>
<p>Please visit the repo for a playable link: <a href="https://github.com/PurpleKingdomGames/snake-demo"><a href="https://github.com/PurpleKingdomGames/snake-demo">https://github.com/PurpleKingdomGames/snake-demo</a></a></p>

<h3 id="snake-in-five-minutes" class="section"><a class="anchor-link left" href="#snake-in-five-minutes"><i class="icofont-laika link">&#xef71;</i></a>Snake! In five minutes!</h3>
<p>Another snake game, in the fewest number of lines possible!</p>
<p>Please visit the repo for a playable link: <a href="https://github.com/davesmith00000/snake-in-5-minutes-port"><a href="https://github.com/davesmith00000/snake-in-5-minutes-port">https://github.com/davesmith00000/snake-in-5-minutes-port</a></a></p>

<h3 id="pong" class="section"><a class="anchor-link left" href="#pong"><i class="icofont-laika link">&#xef71;</i></a>Pong!</h3>
<p>A version of the classic Pong! game, created to test Indigo&#39;s new (and rather basic!) physics engine.</p>
<p>Please visit the repo for a playable link: <a href="https://github.com/davesmith00000/pong"><a href="https://github.com/davesmith00000/pong">https://github.com/davesmith00000/pong</a></a></p>

<h3 id="shaders" class="section"><a class="anchor-link left" href="#shaders"><i class="icofont-laika link">&#xef71;</i></a>Shaders</h3>
<p>A small work in progress selection of shaders written in Ultraviolet for Indigo.</p>
<p>Please visit the repo for a viewable link: <a href="https://github.com/davesmith00000/shaders"><a href="https://github.com/davesmith00000/shaders">https://github.com/davesmith00000/shaders</a></a></p>


<hr class="footer-rule"/>
Expand Down
2 changes: 1 addition & 1 deletion 01-quickstart/hello-indigo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../examples/">Examples, Demos, and References</a></li>
<li class="level2 active nav-leaf"><a href="#">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 01-quickstart/project-templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 active nav-leaf"><a href="#">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 01-quickstart/quickstart/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 active nav-leaf"><a href="#">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 02-guides/howto-custom-entity/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 02-guides/howto-fire-shader/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 02-guides/howto-hello-indigo-tyrian/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 02-guides/howto-indigo-game/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 03-gameloop/events/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 03-gameloop/frame-context/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 03-gameloop/outcome/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 04-organisation/boot-and-start-up/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 04-organisation/game-entry-points/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 04-organisation/scene-management/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 04-organisation/subsystems/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 05-platform/assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 05-platform/cross-platform-publishing/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 05-platform/importers/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 05-platform/input-handling/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
2 changes: 1 addition & 1 deletion 05-platform/loading-and-saving-data/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<ul class="nav-list">
<li class="level1 nav-leaf"><a href="../../table-of-content/">Contents</a></li>
<li class="level1 nav-header">Setup &amp; Configuration</li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/examples/">Examples, Demos, and References</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/hello-indigo/">Hello, Indigo!</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/project-templates/">Mill &amp; SBT Templates</a></li>
<li class="level2 nav-leaf"><a href="../../01-quickstart/quickstart/">Quick start</a></li>
Expand Down
Loading

0 comments on commit 9e2ee9c

Please sign in to comment.