27 lines
990 B
HTML
27 lines
990 B
HTML
{% extends "common/base.html" %}
|
|
|
|
{% block title %}Support Articles - DocuPulse{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<div class="d-flex justify-content-between align-items-center mb-4">
|
|
<h1 class="h3 mb-0" style="color: var(--primary-color);">
|
|
<i class="fas fa-life-ring me-2"></i>Support Articles
|
|
</h1>
|
|
</div>
|
|
|
|
<div class="card border-0 shadow-sm">
|
|
<div class="card-body">
|
|
<div class="text-center py-5">
|
|
<i class="fas fa-file-alt text-muted" style="font-size: 3rem; opacity: 0.5;"></i>
|
|
<h4 class="text-muted mt-3">Support Articles</h4>
|
|
<p class="text-muted">Content coming soon...</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |