feat: add custom Gitea home page with Oribi branding and styling.

This commit is contained in:
Matt Batchelder
2026-02-11 07:25:07 -05:00
commit 8d7517b0c6
3 changed files with 105 additions and 0 deletions

View File

@@ -0,0 +1 @@
<link rel="stylesheet" href="{{AssetUrlPrefix}}/css/oribi.css" />

View File

@@ -0,0 +1,20 @@
{{template "base/head" .}}
<div role="main" aria-label="{{.Title}}" class="page-content home">
<div class="home-container">
<img class="logo-img" src="{{AssetUrlPrefix}}/img/logo.png" alt="Oribi Technology Services"/>
<h1 class="hero-title">Oribi Technology Services</h1>
<div class="hero-subtitle">Internal Code Repository</div>
<div class="action-grid">
<a href="{{AppSubUrl}}/explore/repos" class="action-card">
<i class="octicon octicon-telescope"></i>
<h3>Explore</h3>
</a>
<a href="{{AppSubUrl}}/user/login" class="action-card">
<i class="octicon octicon-sign-in"></i>
<h3>Sign In</h3>
</a>
</div>
</div>
</div>
{{template "base/footer" .}}