summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/views/runs/index.html.erb24
1 files changed, 18 insertions, 6 deletions
diff --git a/app/views/runs/index.html.erb b/app/views/runs/index.html.erb
index 7f935a2..97267ae 100644
--- a/app/views/runs/index.html.erb
+++ b/app/views/runs/index.html.erb
@@ -1,7 +1,19 @@
-<h1 class="text-2xl">Runs</h1>
+<div class="space-y-4">
+ <h1 class="text-2xl">Runs</h1>
-<ul class="list-disc">
- <% @runs.each do |run| %>
- <li><%= run.game.title %> - <%= link_to run.title, run_path(run) %> - Started by <%= run.user.email %></li>
- <% end %>
-</ul>
+ <p>A run is a playthrough of a game. A run can have multiple "checkpoints", where the player uploads a save file
+ and any notes about their run.</p>
+
+ <p>Players can invite other people to play their save file. Whoever is playing the save at the moment can
+ "checkout" the save file so other players know someone is using it. When the player is done, they can upload
+ the save file and then another player can checkout the save file. In this way, multiple players can take
+ turns playing the same run!</p>
+
+ <h2>List of runs</h2>
+
+ <ul class="list-disc">
+ <% @runs.each do |run| %>
+ <li><%= run.game.title %> - <%= link_to run.title, run_path(run) %> - Started by <%= run.user.email %></li>
+ <% end %>
+ </ul>
+</div>