Files
LuHost/views/contentdb/recent.ejs
Nathan Schneider 3aed09b60f Initial commit: LuHost - Luanti Server Management Web Interface
A modern web interface for Luanti (Minetest) server management with ContentDB integration.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-23 17:32:37 -06:00

22 lines
653 B
Plaintext

<%
const body = `
<div class="page-header">
<div style="display: flex; justify-content: space-between; align-items: center;">
<div>
<h2>Recent Content</h2>
<p>Recently added mods and games from ContentDB</p>
</div>
<a href="/contentdb" class="btn btn-secondary">← Back to Browse</a>
</div>
</div>
<div class="card">
<div class="card-body text-center">
<p>Recent content will be displayed here.</p>
<a href="/contentdb" class="btn btn-primary">Browse All Content</a>
</div>
</div>
`;
%>
<%- include('../layout', { body: body, currentPage: 'contentdb', title: title }) %>