summary refs log tree commit diff stats
path: root/rails/app/views
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-29 23:20:31 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2023-11-29 23:20:31 -0500
commitece62b9eb3e2f3995715c32608f1de91d98a22be (patch)
tree2322ac861fe821362a893870d5b2c441132f2204 /rails/app/views
parent83437f5895fd4f110694e66c9d939ff492bc2e1b (diff)
downloadlingo-ece62b9eb3e2f3995715c32608f1de91d98a22be.tar.gz
lingo-ece62b9eb3e2f3995715c32608f1de91d98a22be.tar.bz2
lingo-ece62b9eb3e2f3995715c32608f1de91d98a22be.zip
Rails engine no longer needed
Diffstat (limited to 'rails/app/views')
-rw-r--r--rails/app/views/layouts/lingo/application.html.haml9
-rw-r--r--rails/app/views/lingo/scores/index.html.haml14
2 files changed, 0 insertions, 23 deletions
diff --git a/rails/app/views/layouts/lingo/application.html.haml b/rails/app/views/layouts/lingo/application.html.haml deleted file mode 100644 index 6731e5a..0000000 --- a/rails/app/views/layouts/lingo/application.html.haml +++ /dev/null
@@ -1,9 +0,0 @@
1!!! 5
2%html
3 %head
4 %title LINGO Bot Scoreboard
5 = stylesheet_link_tag "lingo/application", media: "all"
6 = csrf_meta_tags
7 %body
8 #header= image_tag "lingo/header.png"
9 #content= yield
diff --git a/rails/app/views/lingo/scores/index.html.haml b/rails/app/views/lingo/scores/index.html.haml deleted file mode 100644 index afcd0c7..0000000 --- a/rails/app/views/lingo/scores/index.html.haml +++ /dev/null
@@ -1,14 +0,0 @@
1%h2 Bot Puzzles Scoreboard
2%table#scores
3 %tr.scores-header
4 %th
5 %th{colspan: 2} Player
6 %th Score
7 - @scores.each_with_index do |score,index|
8 %tr{class: cycle("even", "odd")}
9 %td.score-index #{index+1}.
10 %td.score-pfp
11 - if !score.avatar_url.nil?
12 = image_tag score.avatar_url
13 %td.score-name= score.username
14 %td.score-value= score.score