- Move 12 markdown files from root to docs/ subdirectories - Organize documentation by category: • docs/troubleshooting/ (1 file) - Technical troubleshooting guides • docs/deployment/ (4 files) - Deployment and security documentation • docs/guides/ (3 files) - Feature-specific guides • docs/planning/ (4 files) - Planning and improvement proposals Root directory cleanup: - Reduced from 16 to 4 markdown files in root - Only essential project files remain: • CLAUDE.md (AI instructions) • README.md (Main project readme) • CLEANUP_PLAN.md (Current cleanup plan) • SRC_STRUCTURE_IMPROVEMENTS.md (Structure improvements) This improves: ✅ Documentation discoverability ✅ Logical organization by purpose ✅ Clean root directory ✅ Better maintainability
36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<layout name="layouts/admin" />
|
|
|
|
<div class="admin-page">
|
|
<div class="page-header">
|
|
<h1>{{ title }}</h1>
|
|
|
|
<div class="page-actions">
|
|
<if condition="{{ actions }}">
|
|
<for items="{{ actions }}" value="action">
|
|
<a href="{{ action.url }}" class="btn btn-primary">
|
|
<if condition="{{ action.icon }}">
|
|
<i class="icon-{{ action.icon }}"></i>
|
|
</if>
|
|
{{ action.label }}
|
|
</a>
|
|
</for>
|
|
</if>
|
|
</div>
|
|
</div>
|
|
|
|
<if condition="{{ searchable }}">
|
|
<div class="table-controls">
|
|
<input type="text"
|
|
class="form-control search-input"
|
|
data-table-search="{{ resource }}"
|
|
placeholder="Search...">
|
|
</div>
|
|
</if>
|
|
|
|
<div class="table-container">
|
|
{{ table }}
|
|
</div>
|
|
|
|
<div class="pagination-container" data-table-pagination="{{ resource }}"></div>
|
|
</div>
|