feat(frontend): add dedicated /cli page, nav links, and CTA buttons; remove CLI modals for leaner UX

- New CLI page at /cli with detailed usage and improved Quick Start card header
- Add CLI link to navbars and small ‘Try the CLI’ CTAs on Home & Templates
- Remove CLI modals and unused showCliModal() handler (keep_small_simple)
- Self-host Bootstrap and Font Awesome; add OSI logo and GPL notice in footers
- Dockerfile: verify vendor assets exist at build time
- Minor a11y/contrast and heading-order cleanups (100 a11y)
This commit is contained in:
William Valentin
2025-09-15 00:47:31 -07:00
parent 9caf95bb7a
commit a0ae5f869e
16 changed files with 589 additions and 48 deletions
+322
View File
@@ -0,0 +1,322 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CLI - {{ app_name }}</title>
<link rel="icon" type="image/svg+xml" href="/static/img/favicon.svg" />
<link rel="icon" type="image/svg+xml" sizes="16x16" href="/static/img/favicon-16x16.svg" />
<link rel="alternate icon" href="/static/img/favicon.svg" />
<link rel="apple-touch-icon" href="/static/img/icon-192x192.svg" />
<link rel="manifest" href="/static/img/site.webmanifest" />
<meta name="theme-color" content="#0d6efd" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="{{ app_name }}" />
<meta name="description" content="{{ app_name }} CLI — command-line interface to create, validate, and manage systemd unit files." />
<link href="/static/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="/static/vendor/fontawesome/css/all.min.css" />
<link href="/static/css/style.css" rel="stylesheet" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<div class="container">
<a class="navbar-brand" href="/">
<i class="fas fa-cogs me-2"></i>{{ app_name }}
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/editor">Editor</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/templates">Templates</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="/cli">CLI</a>
</li>
</ul>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="{{ api_docs_url }}" target="_blank">
<i class="fas fa-book me-1"></i>API Docs
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{ github_url }}" target="_blank">
<i class="fab fa-github me-1"></i>GitHub
</a>
</li>
</ul>
</div>
</div>
</nav>
<header class="hero-section bg-light py-5">
<div class="container">
<div class="row align-items-center g-4">
<div class="col-lg-7">
<h1 class="display-5 fw-bold mb-3">
<i class="fas fa-terminal me-2"></i>{{ app_name }} CLI
</h1>
<p class="lead mb-4">
A powerful command-line interface to create, validate, and manage systemd unit files.
The CLI ships with the backend sub-project and uses the same reliable core as the web app.
</p>
<div class="d-flex gap-3">
<a href="{{ github_url }}" target="_blank" class="btn btn-primary">
<i class="fab fa-github me-2"></i>View on GitHub
</a>
<a href="#install" class="btn btn-outline-primary">
<i class="fas fa-download me-2"></i>Installation
</a>
</div>
</div>
<div class="col-lg-5">
<div class="card border-0 shadow-sm code-preview">
<div class="card-header text-white" style="background: linear-gradient(135deg, var(--primary-color), #0b5ed7);">
<div class="d-flex align-items-center justify-content-between">
<div>
<i class="fas fa-rocket me-2"></i>
<strong>Quick Start</strong>
</div>
<span class="badge bg-light text-primary">CLI</span>
</div>
</div>
<div class="card-body">
<pre class="mb-0"><code># From the repository root
pip install -e .
# Show help
unitforge --help
# Validate a unit file
unitforge validate /etc/systemd/system/myapp.service -v -w
</code></pre>
</div>
</div>
</div>
</div>
</div>
</header>
<main class="container my-5">
<section id="install" class="mb-5">
<h2 class="h3 mb-3">Installation</h2>
<div class="row g-4">
<div class="col-md-6">
<div class="card h-100 border-0 shadow-sm">
<div class="card-body">
<h3 class="h5">From repository (editable)</h3>
<p class="text-muted mb-3">
Install directly from the repository so changes are picked up automatically.
</p>
<pre class="bg-dark text-light p-3 rounded"><code>pip install -e .</code></pre>
<button class="btn btn-sm btn-outline-light mt-2" data-copy="pip install -e .">
<i class="fas fa-copy me-1"></i>Copy
</button>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card h-100 border-0 shadow-sm">
<div class="card-body">
<h3 class="h5">Verify installation</h3>
<p class="text-muted mb-3">
Use the built-in version and help commands to confirm the CLI is available.
</p>
<pre class="bg-dark text-light p-3 rounded"><code>unitforge --version
unitforge --help</code></pre>
<div class="d-flex gap-2 mt-2">
<button class="btn btn-sm btn-outline-light" data-copy="unitforge --version">
<i class="fas fa-copy me-1"></i>Copy version
</button>
<button class="btn btn-sm btn-outline-light" data-copy="unitforge --help">
<i class="fas fa-copy me-1"></i>Copy help
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="commands" class="mb-5">
<h2 class="h3 mb-3">Common Commands</h2>
<div class="row g-4">
<div class="col-lg-6">
<div class="card border-0 shadow-sm h-100">
<div class="card-body">
<h3 class="h5"><i class="fas fa-check-circle text-success me-2"></i>Validate</h3>
<p class="text-muted">
Validate an existing systemd unit file. Add <code>-v</code> for verbose
details and <code>-w</code> to include warnings.
</p>
<pre class="bg-dark text-light p-3 rounded"><code>unitforge validate /etc/systemd/system/myapp.service -v -w</code></pre>
<button class="btn btn-sm btn-outline-light" data-copy="unitforge validate /etc/systemd/system/myapp.service -v -w">
<i class="fas fa-copy me-1"></i>Copy
</button>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card border-0 shadow-sm h-100">
<div class="card-body">
<h3 class="h5"><i class="fas fa-plus-circle text-primary me-2"></i>Create</h3>
<p class="text-muted">
Create a new unit file from scratch with helpful flags and validation.
</p>
<pre class="bg-dark text-light p-3 rounded"><code>unitforge create \
--type service \
--name myapp \
--exec-start "/usr/bin/myapp" \
--restart on-failure \
--output myapp.service \
--validate-output</code></pre>
<button class="btn btn-sm btn-outline-light" data-copy="unitforge create --type service --name myapp --exec-start &quot;/usr/bin/myapp&quot; --restart on-failure --output myapp.service --validate-output">
<i class="fas fa-copy me-1"></i>Copy
</button>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card border-0 shadow-sm h-100">
<div class="card-body">
<h3 class="h5"><i class="fas fa-layer-group text-info me-2"></i>Templates</h3>
<p class="text-muted mb-2">
Explore and generate units from curated templates.
</p>
<pre class="bg-dark text-light p-3 rounded"><code># List templates
unitforge template list
# Show details
unitforge template show webapp
# Generate (non-interactive)
unitforge template generate webapp \
--param name=mywebapp \
--param exec_start="/usr/bin/node server.js" \
--param user=www-data \
--param working_directory=/opt/mywebapp \
--validate-output
# Generate (interactive)
unitforge template generate webapp --interactive</code></pre>
<div class="d-flex gap-2 mt-2">
<button class="btn btn-sm btn-outline-light" data-copy="unitforge template list">
<i class="fas fa-copy me-1"></i>Copy list
</button>
<button class="btn btn-sm btn-outline-light" data-copy="unitforge template show webapp">
<i class="fas fa-copy me-1"></i>Copy show
</button>
<button class="btn btn-sm btn-outline-light" data-copy="unitforge template generate webapp --interactive">
<i class="fas fa-copy me-1"></i>Copy interactive
</button>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card border-0 shadow-sm h-100">
<div class="card-body">
<h3 class="h5"><i class="fas fa-info-circle text-secondary me-2"></i>Info</h3>
<p class="text-muted">
Extract metadata and section/key counts from a unit file.
</p>
<pre class="bg-dark text-light p-3 rounded"><code>unitforge info myapp.service</code></pre>
<button class="btn btn-sm btn-outline-light" data-copy="unitforge info myapp.service">
<i class="fas fa-copy me-1"></i>Copy
</button>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="card border-0 shadow-sm">
<div class="card-body">
<h3 class="h5"><i class="fas fa-edit text-warning me-2"></i>Edit</h3>
<p class="text-muted">
Modify values in an existing unit file by setting or removing keys.
</p>
<pre class="bg-dark text-light p-3 rounded"><code>unitforge edit source.service dest.service \
--set Service.ExecStart=/usr/bin/myapp \
--set Unit.Description="My Service" \
--remove Service.Environment \
--validate-output</code></pre>
<button class="btn btn-sm btn-outline-light" data-copy="unitforge edit source.service dest.service --set Service.ExecStart=/usr/bin/myapp --set Unit.Description=&quot;My Service&quot; --remove Service.Environment --validate-output">
<i class="fas fa-copy me-1"></i>Copy
</button>
</div>
</div>
</div>
</div>
</section>
<section id="tips" class="mb-5">
<h2 class="h3 mb-3">Tips</h2>
<ul class="list-group">
<li class="list-group-item">
Use <code>--validate-output</code> after generation or editing to catch issues early.
</li>
<li class="list-group-item">
Prefer interactive template generation (<code>--interactive</code>) to fill required fields smoothly.
</li>
<li class="list-group-item">
The CLI is part of the backend package. See the repository for the backend/CLI source:
<a href="{{ github_url }}" target="_blank">{{ github_url }}</a>
</li>
</ul>
</section>
</main>
<footer class="bg-dark text-light py-4 mt-5">
<div class="container">
<div class="row">
<div class="col-md-6">
<p class="fw-bold mb-0"><i class="fas fa-cogs me-2"></i>{{ app_name }}</p>
<p class="text-muted small">{{ app_description }}.</p>
</div>
<div class="col-md-6 text-md-end">
<div class="d-flex justify-content-md-end gap-3">
<a href="{{ api_docs_url }}" class="text-light text-decoration-none">
<i class="fas fa-book me-1"></i>API Docs
</a>
<a href="{{ github_url }}" class="text-light text-decoration-none">
<i class="fab fa-github me-1"></i>GitHub
</a>
</div>
<div class="mt-2 small">
<span class="me-2">
<i class="fas fa-code-branch me-1"></i>Open Source
<span class="badge bg-success ms-2">OSI</span>
</span>
<span>
Licensed under
<a href="https://www.gnu.org/licenses/gpl-3.0.en.html" target="_blank" rel="noopener" class="text-decoration-underline text-light">GPL-3.0-or-later</a>
</span>
</div>
</div>
</div>
</div>
</footer>
<script src="/static/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="/static/js/main.js"></script>
</body>
</html>
+48 -9
View File
@@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{{ app_name }} Editor — create, validate, and download systemd unit files with a visual editor and real-time checks.">
<title>Editor - {{ app_name }}</title>
<link rel="icon" type="image/svg+xml" href="/static/img/favicon.svg">
<link rel="icon" type="image/svg+xml" sizes="16x16" href="/static/img/favicon-16x16.svg">
@@ -14,10 +15,10 @@
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="{{ app_name }}">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.0.1/codemirror.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.0.1/theme/monokai.min.css" rel="stylesheet">
<link rel="preconnect" href="https://cdn.jsdelivr.net" crossorigin>
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin>
<link href="/static/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/static/vendor/fontawesome/css/all.min.css">
<link href="/static/css/style.css" rel="stylesheet">
</head>
<body>
@@ -40,12 +41,15 @@
<li class="nav-item">
<a class="nav-link" href="/templates">Templates</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/cli">CLI</a>
</li>
</ul>
<div class="navbar-nav">
<button class="btn btn-outline-light btn-sm me-2" onclick="downloadFile()">
<button class="btn btn-light btn-sm me-2" onclick="downloadFile()">
<i class="fas fa-download me-1"></i>Download
</button>
<button class="btn btn-outline-light btn-sm" onclick="showUploadModal()">
<button class="btn btn-light btn-sm" onclick="showUploadModal()">
<i class="fas fa-upload me-1"></i>Upload
</button>
</div>
@@ -214,7 +218,8 @@
</div>
</div>
<div class="card-body p-0">
<textarea id="editor" class="form-control border-0" rows="25" style="font-family: 'Courier New', monospace; resize: none; color: white; background-color: #2d3748;">[Unit]
<label for="editor" class="visually-hidden">Unit file editor</label>
<textarea id="editor" class="form-control border-0" aria-label="Unit file content" rows="25" style="font-family: 'Courier New', monospace; resize: none; color: white; background-color: #2d3748;">[Unit]
Description=My Service Description
After=network.target
@@ -274,7 +279,7 @@ WantedBy=multi-user.target</textarea>
<small><strong>[Install]</strong> - Installation and enabling info</small>
</div>
<div class="help-item">
<small><a href="https://www.freedesktop.org/software/systemd/man/systemd.unit.html" target="_blank">systemd documentation <i class="fas fa-external-link-alt"></i></a></small>
<small><a class="link-contrast" href="https://www.freedesktop.org/software/systemd/man/systemd.unit.html" target="_blank">systemd documentation <i class="fas fa-external-link-alt"></i></a></small>
</div>
</div>
</div>
@@ -326,7 +331,41 @@ WantedBy=multi-user.target</textarea>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<footer class="bg-dark text-light py-4 mt-5">
<div class="container">
<div class="row">
<div class="col-md-6">
<p class="fw-bold mb-0"><i class="fas fa-cogs me-2"></i>{{ app_name }}</p>
<p class="text-muted small">{{ app_description }}.</p>
</div>
<div class="col-md-6 text-md-end">
<div class="d-flex justify-content-md-end gap-3">
<a href="{{ api_docs_url }}" class="text-light text-decoration-none">
<i class="fas fa-book me-1"></i>API Docs
</a>
<a href="{{ github_url }}" class="text-light text-decoration-none">
<i class="fab fa-github me-1"></i>GitHub
</a>
</div>
<div class="mt-2 small">
<span class="me-2">
<i class="fas fa-code-branch me-1"></i>Open Source
<span class="badge bg-success ms-2">OSI</span>
</span>
<span>
Licensed under
<a href="https://www.gnu.org/licenses/gpl-3.0.en.html" target="_blank" rel="noopener" class="text-decoration-underline text-light">GPL-3.0-or-later</a>
</span>
</div>
</div>
</div>
</div>
</footer>
<script src="/static/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="/static/js/main.js"></script>
<script src="/static/js/editor.js"></script>
</body>
</html>
+28 -17
View File
@@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="{{ app_name }} — Systemd unit file creator with templates, validation, and a visual editor." />
<title>{{ app_name }} - Systemd Unit File Creator</title>
<link rel="icon" type="image/svg+xml" href="/static/img/favicon.svg" />
<link
@@ -19,14 +20,8 @@
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="{{ app_name }}" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
rel="stylesheet"
/>
<link href="/static/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="/static/vendor/fontawesome/css/all.min.css" />
<link href="/static/css/style.css" rel="stylesheet" />
</head>
<body>
@@ -54,6 +49,9 @@
<li class="nav-item">
<a class="nav-link" href="/templates">Templates</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/cli">CLI</a>
</li>
</ul>
<ul class="navbar-nav">
<li class="nav-item">
@@ -91,6 +89,9 @@
<i class="fas fa-templates me-2"></i>Browse
Templates
</a>
<a href="/cli" class="btn btn-outline-secondary btn-sm">
<i class="fas fa-terminal me-1"></i>Try the CLI
</a>
</div>
</div>
<div class="col-lg-6">
@@ -125,7 +126,7 @@ WantedBy=multi-user.target</code></pre>
<div class="row">
<div class="col-lg-8 mx-auto text-center mb-5">
<h2 class="h1 mb-3">Choose Your Approach</h2>
<p class="lead text-muted">
<p class="lead">
{{ app_name }} offers multiple ways to create systemd
unit files, from quick templates to detailed manual
editing.
@@ -142,7 +143,7 @@ WantedBy=multi-user.target</code></pre>
>
<i class="fas fa-magic text-white"></i>
</div>
<h5 class="card-title">Quick Templates</h5>
<h3 class="card-title h5">Quick Templates</h3>
<p class="card-text text-muted">
Use pre-built templates for common services like
web apps, databases, and containers.
@@ -165,12 +166,12 @@ WantedBy=multi-user.target</code></pre>
>
<i class="fas fa-edit text-white"></i>
</div>
<h5 class="card-title">Visual Editor</h5>
<h3 class="card-title h5">Visual Editor</h3>
<p class="card-text text-muted">
Create and edit unit files with our intuitive
form-based editor with real-time validation.
</p>
<a href="/editor" class="btn btn-outline-success">
<a href="/editor" class="btn btn-success">
Open Editor
</a>
</div>
@@ -185,7 +186,7 @@ WantedBy=multi-user.target</code></pre>
>
<i class="fas fa-check-circle text-white"></i>
</div>
<h5 class="card-title">Validation</h5>
<h3 class="card-title h5">Validation</h3>
<p class="card-text text-muted">
Validate existing unit files and get detailed
feedback on syntax and best practices.
@@ -208,7 +209,7 @@ WantedBy=multi-user.target</code></pre>
>
<i class="fas fa-terminal text-white"></i>
</div>
<h5 class="card-title">CLI Tool</h5>
<h3 class="card-title h5">CLI Tool</h3>
<p class="card-text text-muted">
Use the command-line interface for automation
and integration with your development workflow.
@@ -228,7 +229,7 @@ WantedBy=multi-user.target</code></pre>
<div class="col-lg-8 mx-auto">
<div class="text-center mb-4">
<h3>Supported Unit Types</h3>
<p class="text-muted">
<p>
{{ app_name }} supports all major systemd unit types
</p>
</div>
@@ -389,7 +390,7 @@ unitforge template generate webapp \
<div class="container">
<div class="row">
<div class="col-md-6">
<h6><i class="fas fa-cogs me-2"></i>{{ app_name }}</h6>
<p class="fw-bold mb-0"><i class="fas fa-cogs me-2"></i>{{ app_name }}</p>
<p class="text-muted small">{{ app_description }}.</p>
</div>
<div class="col-md-6 text-md-end">
@@ -407,12 +408,22 @@ unitforge template generate webapp \
<i class="fab fa-github me-1"></i>GitHub
</a>
</div>
<div class="mt-2 small">
<span class="me-2">
<i class="fas fa-code-branch me-1"></i>Open Source
<span class="badge bg-success ms-2">OSI</span>
</span>
<span>
Licensed under
<a href="https://www.gnu.org/licenses/gpl-3.0.en.html" target="_blank" rel="noopener" class="text-decoration-underline text-light">GPL-3.0-or-later</a>
</span>
</div>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="/static/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="/static/js/main.js"></script>
</body>
</html>
+27 -12
View File
@@ -18,15 +18,10 @@
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="description" content="{{ app_name }} Templates — generate production-ready systemd unit files from curated templates." />
<meta name="apple-mobile-web-app-title" content="{{ app_name }}" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
rel="stylesheet"
/>
<link href="/static/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="/static/vendor/fontawesome/css/all.min.css" />
<link href="/static/css/style.css" rel="stylesheet" />
</head>
<body>
@@ -56,6 +51,9 @@
>Templates</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="/cli">CLI</a>
</li>
</ul>
</div>
</div>
@@ -68,12 +66,17 @@
<h1 class="display-5 fw-bold mb-3">
<i class="fas fa-templates me-3"></i>Unit File Templates
</h1>
<p class="lead text-muted">
<p class="lead">
Choose from pre-built templates for common systemd unit
configurations. Each template provides a solid
foundation that you can customize for your specific
needs.
</p>
<div class="mt-2">
<a href="/cli" class="btn btn-outline-secondary btn-sm">
<i class="fas fa-terminal me-1"></i>Try the CLI
</a>
</div>
</div>
<div class="col-lg-4 text-lg-end">
<div class="input-group">
@@ -87,7 +90,7 @@
<button
class="btn btn-outline-secondary"
type="button"
onclick="clearSearch()"
onclick="clearSearch()" aria-label="Clear search"
>
<i class="fas fa-times"></i>
</button>
@@ -366,7 +369,7 @@
<div class="container">
<div class="row">
<div class="col-md-6">
<h6><i class="fas fa-cogs me-2"></i>{{ app_name }}</h6>
<p class="fw-bold mb-0"><i class="fas fa-cogs me-2"></i>{{ app_name }}</p>
<p class="text-muted small">{{ app_description }}.</p>
</div>
<div class="col-md-6 text-md-end">
@@ -384,12 +387,24 @@
<i class="fab fa-github me-1"></i>GitHub
</a>
</div>
<div class="mt-2 small">
<span class="me-2">
<i class="fas fa-code-branch me-1"></i>Open Source
<span class="badge bg-success ms-2">OSI</span>
</span>
<span>
Licensed under
<a href="https://www.gnu.org/licenses/gpl-3.0.en.html" target="_blank" rel="noopener" class="text-decoration-underline text-light">GPL-3.0-or-later</a>
</span>
</div>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="/static/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="/static/js/main.js"></script>
<script src="/static/js/templates.js"></script>
</body>