getnamingo-registry/cp/resources/views/admin/support/docs.twig

51 lines
No EOL
1.9 KiB
Twig

{% extends "layouts/app.twig" %}
{% block title %}{{ __('Documentation') }}{% endblock %}
{% block content %}
<div class="page-wrapper">
<!-- Page header -->
<div class="page-header d-print-none">
<div class="container-xl">
<div class="row g-2 align-items-center">
<div class="col">
<!-- Page pre-title -->
<div class="page-pretitle">
{{ __('Overview') }}
</div>
<h2 class="page-title">
{{ __('Documentation') }}
</h2>
</div>
</div>
</div>
</div>
<!-- Page body -->
<div class="page-body">
<div class="container-xl">
<div class="col-12">
<div class="card">
<div class="card-body border-bottom py-3">
<h2>{{ __('Documentation') }}</h2>
<p>{{ documentation_intro|default('Replace this section with a brief introduction about your documentation.') }}</p>
<h3>Getting Started</h3>
<p>{{ getting_started_text|default('Provide users with the basics to get started with your TLD registry management system here.') }}</p>
<h3>Registration Process</h3>
<p>{{ registration_process_text|default('Describe the process for domain registration in detail here.') }}</p>
<!-- ... Add more sections as needed ... -->
<footer class="mt-4 text-muted">
<p>To customize this documentation page:</p>
<p>Copy <code>docs.twig</code> from <code>/var/www/cp/resources/views/admin/support</code> to <code>docs.custom.twig</code> and edit the file as required.</p>
</footer>
</div>
</div>
</div>
</div>
</div>
{% include 'partials/footer.twig' %}
</div>
{% endblock %}