mirror of
https://github.com/getnamingo/registry.git
synced 2025-05-16 09:37:00 +02:00
50 lines
No EOL
1.8 KiB
Twig
50 lines
No EOL
1.8 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>
|
|
<p class="text-muted">Replace or remove this footer as necessary. Add any relevant information or links here.</p>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% include 'partials/footer.twig' %}
|
|
</div>
|
|
{% endblock %} |