|
| 1 | +--- |
| 2 | +layout: default |
| 3 | +skiph1fortitle: true |
| 4 | +--- |
| 5 | + |
| 6 | +<div class="alert alert-danger" style="margin-bottom: 0px;" role="alert"> |
| 7 | + This is a <strong>draft</strong> user guide for a future release of Accumulo 4.0.0!<br> |
| 8 | +</div> |
| 9 | + |
| 10 | +<div class="row"> |
| 11 | + <div class="col-md-3"> |
| 12 | + <div class="accordion sticky-top" id="myAccordion" style="top: 100px;"> |
| 13 | + {% assign mydocs = site.docs-4 | group_by: 'category' %} |
| 14 | + {% assign categories = "getting-started,development,security,configuration,administration,troubleshooting" | split: "," %} |
| 15 | + {% for pcat in categories %} |
| 16 | + {% for dcat in mydocs %} |
| 17 | + {% if pcat == dcat.name %} |
| 18 | + <div class="accordion-item"> |
| 19 | + <div class="accordion-header fs-5 fw-bold" id="heading{{ pcat }}"> |
| 20 | + <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 }}"> |
| 21 | + {{ pcat | capitalize | replace: "-", " " }} |
| 22 | + </button> |
| 23 | + </div> |
| 24 | + <div id="collapse{{pcat}}" class="accordion-collapse collapse{% if pcat == page.category %} show{% endif %}" aria-labelledby="heading{{ pcat }}" data-bs-parent="#myAccordion"> |
| 25 | + <div class="accordion-body"> |
| 26 | + {% assign items = dcat.items | sort: 'order' %} |
| 27 | + {% for item in items %} |
| 28 | + <div class="row{% if page.title == item.title %} selected{% endif %}"><a href="{{ item.url }}">{{ item.title }}</a></div> |
| 29 | + {% endfor %} |
| 30 | + </div> |
| 31 | + </div> |
| 32 | + </div> |
| 33 | + {% endif %} |
| 34 | + {% endfor %} |
| 35 | + {% endfor %} |
| 36 | + </div> |
| 37 | + </div> |
| 38 | + <div class="col-md-9"> |
| 39 | + {% if page.category %} |
| 40 | + <p>Accumulo {{ page.version }} Documentation >> {{ page.category | capitalize | replace: "-", " " }} >> {{ page.title }}</p> |
| 41 | + {% endif %} |
| 42 | + {% unless page.skip_doc_h1 %} |
| 43 | + <div class="row mt-4"> |
| 44 | + <div class="col-md-12 d-flex justify-content-between"> |
| 45 | + <h1>{{ page.title }}</h1> |
| 46 | + <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> |
| 47 | + </div> |
| 48 | + </div> |
| 49 | + {% endunless %} |
| 50 | + {{ content }} |
| 51 | + <div class="row mt-4"> |
| 52 | + <div class="col-md-12 d-flex justify-content-between"> |
| 53 | + <strong>Find documentation for all releases in the <a href="{{ site.baseurl }}/docs-archive">archive</strong> |
| 54 | + <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> |
| 55 | + </div> |
| 56 | + </div> |
| 57 | + </div> |
| 58 | +</div> |
0 commit comments