31 lines
810 B
Text
31 lines
810 B
Text
doctype html
|
|
html
|
|
head
|
|
title L4D Tools
|
|
meta[charset="utf-8"]
|
|
meta[name="viewport" content="width=device-width, initial-scale=1"]
|
|
= csrf_meta_tags
|
|
= csp_meta_tag
|
|
= stylesheet_link_tag :app, "data-turbo-track": "reload"
|
|
= javascript_importmap_tags
|
|
|
|
body
|
|
header.navbar
|
|
.container
|
|
h1 L4D Tools
|
|
nav
|
|
- if current_user
|
|
ul
|
|
li = link_to "Dashboard", dashboard_path
|
|
li = link_to "Templates", server_templates_path
|
|
li = link_to "Servers", servers_path
|
|
li = link_to "Logout", logout_path, method: :delete
|
|
|
|
main
|
|
.container
|
|
- if notice.present?
|
|
.alert.alert--success = notice
|
|
- if alert.present?
|
|
.alert.alert--error = alert
|
|
|
|
== yield
|