diff --git a/app/assets/stylesheets/master.css b/app/assets/stylesheets/master.css index 76705be..25f1f6a 100644 --- a/app/assets/stylesheets/master.css +++ b/app/assets/stylesheets/master.css @@ -106,6 +106,19 @@ table.services tr td:last-child { font-style: italic; } +table.system-info { + padding-left: 1em; +} + +table.system-info td { + padding: 0 1em 0 0; +} + +table.system-info tr td:first-child { + padding-right: 0.5em; + min-width: 100px; +} + .page-container { display: grid; grid-template-columns: 1fr 250px; diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index 95f2992..40d50f4 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -1,4 +1,6 @@ class HomeController < ApplicationController def index + @date_time = Time.now.strftime("%A, %d %B %Y %r (%Z)") + @os = "Ubuntu GNU/Linux 22.04 (LTS)" end end diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb index b7129f2..5655274 100644 --- a/app/views/home/index.html.erb +++ b/app/views/home/index.html.erb @@ -8,22 +8,65 @@

Members

Services

- - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
dingus.frzn.devdingusdoes thingsgit.frzn.devForgejoA lightweight git server (which is better than Gogs)
yourmother.frzn.devyourmother doeri am so funny ahahhhahp.frzn.devficheA command line pastebin (similar to termbin)
pb.frzn.devPrivateBinA minimalist, open source online pastebin
bitwarden.frzn.devVaultwardenA Bitwarden-compatible server written in Rust
whatever.frzn.devMumbleA VoIP server
snowflakeidkSnowflakeA web proxy server
cp.frzn.devCryptPadAn open-source web-based encrypted suite of realtime collaborative editors
+
+
+

System Info

+ + + + + + + +
time:<%= @date_time %>
os:<%= @os %>
\ No newline at end of file diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 03ba744..15fcd61 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -3,6 +3,7 @@ frzn.dev + <%= csrf_meta_tags %> <%= csp_meta_tag %> <%= stylesheet_link_tag "application", "data-turbo-track": "reload" %> diff --git a/public/apple-touch-icon-precomposed.png b/public/apple-touch-icon-precomposed.png deleted file mode 100644 index e69de29..0000000 diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png deleted file mode 100644 index e69de29..0000000 diff --git a/public/favicon.ico b/public/favicon.ico index e69de29..3cba2fd 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ