Add server info to frontpage and some other stuff (favicon)
This commit is contained in:
parent
9ea24b4167
commit
85490073ee
7 changed files with 66 additions and 7 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -8,22 +8,65 @@
|
|||
<p>Members</p>
|
||||
<ul class="members">
|
||||
<li><a href="/~amr">~amr</a></li>
|
||||
<li><a href="/~raf">~raf</a></li>
|
||||
<li>~raf</li>
|
||||
<li><a href="/~floppy">~floppy</a></li>
|
||||
<li>~peachy</li>
|
||||
<li><a href="/~gld">~gld</a></li>
|
||||
<li><a href="/~cam">~cam</a></li>
|
||||
<li>~buddyatmos</li>
|
||||
<li>~dkay</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section">
|
||||
<p>Services</p>
|
||||
<table class="services">
|
||||
<tr>
|
||||
<td><a href="">dingus.frzn.dev</a></td>
|
||||
<td>dingus</td>
|
||||
<td>does things</td>
|
||||
<td><a href="">git.frzn.dev</a></td>
|
||||
<td>Forgejo</td>
|
||||
<td>A lightweight git server (which is better than Gogs)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="">yourmother.frzn.dev</a></td>
|
||||
<td>yourmother doer</td>
|
||||
<td>i am so funny ahahhhah</td>
|
||||
<td><a href="">p.frzn.dev</a></td>
|
||||
<td>fiche</td>
|
||||
<td>A command line pastebin (similar to termbin)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="">pb.frzn.dev</a></td>
|
||||
<td>PrivateBin</td>
|
||||
<td>A minimalist, open source online pastebin</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="https://bitwarden.frzn.dev/">bitwarden.frzn.dev</a></td>
|
||||
<td>Vaultwarden</td>
|
||||
<td>A Bitwarden-compatible server written in Rust</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="">whatever.frzn.dev</a></td>
|
||||
<td>Mumble</td>
|
||||
<td>A VoIP server</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="">snowflakeidk</a></td>
|
||||
<td>Snowflake</td>
|
||||
<td>A web proxy server</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="">cp.frzn.dev</a></td>
|
||||
<td>CryptPad</td>
|
||||
<td>An open-source web-based encrypted suite of realtime collaborative editors</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="section">
|
||||
<p>System Info</p>
|
||||
<table class="system-info">
|
||||
<tr>
|
||||
<td>time:</td>
|
||||
<td><%= @date_time %></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>os:</td>
|
||||
<td><%= @os %></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
|
@ -3,6 +3,7 @@
|
|||
<head>
|
||||
<title>frzn.dev</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||
<%= csrf_meta_tags %>
|
||||
<%= csp_meta_tag %>
|
||||
<%= stylesheet_link_tag "application", "data-turbo-track": "reload" %>
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 0 B After Width: | Height: | Size: 4.2 KiB |
Loading…
Add table
Add a link
Reference in a new issue