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.dev | -dingus | -does things | +git.frzn.dev | +Forgejo | +A lightweight git server (which is better than Gogs) |
| yourmother.frzn.dev | -yourmother doer | -i am so funny ahahhhah | +p.frzn.dev | +fiche | +A command line pastebin (similar to termbin) | +
| pb.frzn.dev | +PrivateBin | +A minimalist, open source online pastebin | +|||
| bitwarden.frzn.dev | +Vaultwarden | +A Bitwarden-compatible server written in Rust | +|||
| whatever.frzn.dev | +Mumble | +A VoIP server | +|||
| snowflakeidk | +Snowflake | +A web proxy server | +|||
| cp.frzn.dev | +CryptPad | +An open-source web-based encrypted suite of realtime collaborative editors | +
System Info
+| time: | +<%= @date_time %> | +
| os: | +<%= @os %> |