_layouts/docs-4.html (56 lines of code) (raw):
---
layout: default
skiph1fortitle: true
---
<div class="alert alert-danger" style="margin-bottom: 0px;" role="alert">
This is a <strong>draft</strong> user guide for a future release of Accumulo 4.0.0!<br>
</div>
<div class="row">
<div class="col-md-3">
<div class="accordion sticky-top" id="myAccordion" style="top: 100px;">
{% assign mydocs = site.docs-4 | group_by: 'category' %}
{% assign categories = "getting-started,development,security,configuration,administration,troubleshooting" | split: "," %}
{% for pcat in categories %}
{% for dcat in mydocs %}
{% if pcat == dcat.name %}
<div class="accordion-item">
<div class="accordion-header fs-5 fw-bold" id="heading{{ pcat }}">
<button class="accordion-button {% if pcat != page.category %}collapsed{% endif %}" type="button" data-bs-toggle="collapse" data-bs-target="#collapse{{ pcat }}" aria-expanded="{% if pcat == page.category %}true{% else %}false{% endif %}" aria-controls="collapse{{ pcat }}">
{{ pcat | capitalize | replace: "-", " " }}
</button>
</div>
<div id="collapse{{pcat}}" class="accordion-collapse collapse{% if pcat == page.category %} show{% endif %}" aria-labelledby="heading{{ pcat }}" data-bs-parent="#myAccordion">
<div class="accordion-body">
{% assign items = dcat.items | sort: 'order' %}
{% for item in items %}
<div class="row{% if page.title == item.title %} selected{% endif %}"><a href="{{ item.url }}">{{ item.title }}</a></div>
{% endfor %}
</div>
</div>
</div>
{% endif %}
{% endfor %}
{% endfor %}
</div>
</div>
<div class="col-md-9">
{% if page.category %}
<p>Accumulo {{ page.version }} Documentation >> {{ page.category | capitalize | replace: "-", " " }} >> {{ page.title }}</p>
{% endif %}
{% unless page.skip_doc_h1 %}
<div class="row mt-4">
<div class="col-md-12 d-flex justify-content-between">
<h1>{{ page.title }}</h1>
<a href="https://github.com/apache/accumulo-website/edit/main/{{ page.path }}" role="button"><span class="fa-solid fa-pen-to-square"></span> <small>Edit this page</small></a>
</div>
</div>
{% endunless %}
{{ content }}
<div class="row mt-4">
<div class="col-md-12 d-flex justify-content-between">
<strong>Find documentation for all releases in the <a href="{{ site.baseurl }}/docs-archive">archive</strong>
<a href="https://github.com/apache/accumulo-website/edit/main/{{ page.path }}" role="button"><span class="fa-solid fa-pen-to-square"></span> <small>Edit this page</small></a>
</div>
</div>
</div>
</div>