feat: implement basic info display for anemos
This commit is contained in:
parent
06a12df43f
commit
ce5d327ca2
34 changed files with 582 additions and 88 deletions
34
app/views/page/index.html.erb
Normal file
34
app/views/page/index.html.erb
Normal file
|
@ -0,0 +1,34 @@
|
|||
<header>
|
||||
<img src="/icon.png" width="50" alt="eureka.coffee logo" />
|
||||
<h1>eureka.coffee</h1>
|
||||
</header>
|
||||
|
||||
<div class="new-buttons">
|
||||
<%= form_tag "/new?zone=anemos", method: :post do %>
|
||||
<button type="submit" class="new-button">
|
||||
<img src="/wind.png" width="50" alt="Wind" /><br/>
|
||||
Anemos
|
||||
</button>
|
||||
<% end %>
|
||||
|
||||
<%= form_tag "/new?zone=pagos", method: :post do %>
|
||||
<button type="submit" class="new-button">
|
||||
<img src="/ice.png" width="50" alt="Wind" /><br/>
|
||||
Pagos
|
||||
</button>
|
||||
<% end %>
|
||||
|
||||
<%= form_tag "/new?zone=pyros", method: :post do %>
|
||||
<button type="submit" class="new-button">
|
||||
<img src="/fire.png" width="50" alt="Wind" /><br/>
|
||||
Pyros
|
||||
</button>
|
||||
<% end %>
|
||||
|
||||
<%= form_tag "/new?zone=hydatos", method: :post do %>
|
||||
<button type="submit" class="new-button">
|
||||
<img src="/water.png" width="50" alt="Wind" /><br/>
|
||||
Hydatos
|
||||
</button>
|
||||
<% end %>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue