From ece62b9eb3e2f3995715c32608f1de91d98a22be Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Wed, 29 Nov 2023 23:20:31 -0500 Subject: Rails engine no longer needed --- rails/app/views/layouts/lingo/application.html.haml | 9 --------- rails/app/views/lingo/scores/index.html.haml | 14 -------------- 2 files changed, 23 deletions(-) delete mode 100644 rails/app/views/layouts/lingo/application.html.haml delete mode 100644 rails/app/views/lingo/scores/index.html.haml (limited to 'rails/app/views') 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 @@ -!!! 5 -%html - %head - %title LINGO Bot Scoreboard - = stylesheet_link_tag "lingo/application", media: "all" - = csrf_meta_tags - %body - #header= image_tag "lingo/header.png" - #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 @@ -%h2 Bot Puzzles Scoreboard -%table#scores - %tr.scores-header - %th - %th{colspan: 2} Player - %th Score - - @scores.each_with_index do |score,index| - %tr{class: cycle("even", "odd")} - %td.score-index #{index+1}. - %td.score-pfp - - if !score.avatar_url.nil? - = image_tag score.avatar_url - %td.score-name= score.username - %td.score-value= score.score -- cgit 1.4.1